File tree Expand file tree Collapse file tree 1 file changed +11
-1
lines changed
crates/store/re_data_loader/src Expand file tree Collapse file tree 1 file changed +11
-1
lines changed Original file line number Diff line number Diff line change @@ -204,7 +204,17 @@ fn decode_and_stream<R: std::io::Read>(
204
204
}
205
205
206
206
re_log_types:: LogMsg :: BlueprintActivationCommand ( blueprint_activation_command) => {
207
- re_log_types:: LogMsg :: BlueprintActivationCommand ( blueprint_activation_command)
207
+ let mut blueprint_id = blueprint_activation_command. blueprint_id . clone ( ) ;
208
+ if let Some ( forced_application_id) = forced_application_id {
209
+ blueprint_id =
210
+ blueprint_id. with_application_id ( forced_application_id. clone ( ) ) ;
211
+ }
212
+ re_log_types:: LogMsg :: BlueprintActivationCommand (
213
+ re_log_types:: BlueprintActivationCommand {
214
+ blueprint_id,
215
+ ..blueprint_activation_command
216
+ } ,
217
+ )
208
218
}
209
219
}
210
220
} else {
You can’t perform that action at this time.
0 commit comments