Skip to content

Commit

Permalink
Update crates/store/re_data_loader/src/load_file.rs
Browse files Browse the repository at this point in the history
Co-authored-by: Emil Ernerfeldt <[email protected]>
  • Loading branch information
teh-cmc and emilk authored Nov 6, 2024
1 parent c314a60 commit 1fd25a7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/store/re_data_loader/src/load_file.rs
Original file line number Diff line number Diff line change
Expand Up @@ -320,7 +320,7 @@ pub(crate) fn send(

// Never try to send custom store info for RRDs and RBLs, they always have their own, and
// it's always right.
let should_force_store_info = !tracked.is_rrd_or_rbl && settings.force_store_info;
let should_force_store_info = settings.force_store_info && !tracked.is_rrd_or_rbl;

let should_send_new_store_info = should_force_store_info
|| (!tracked.already_has_store_info && !is_a_preexisting_recording);
Expand Down

0 comments on commit 1fd25a7

Please sign in to comment.