Skip to content

Commit

Permalink
breaking changes
Browse files Browse the repository at this point in the history
  • Loading branch information
teh-cmc committed Apr 12, 2023
1 parent 252c6d7 commit 4e68958
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/rerun/src/run.rs
Original file line number Diff line number Diff line change
Expand Up @@ -441,7 +441,7 @@ fn receive_into_log_db(rx: &Receiver<LogMsg>) -> anyhow::Result<re_data_store::L
Ok(msg) => {
re_log::info_once!("Received first message.");
let is_goodbye = matches!(msg, re_log_types::LogMsg::Goodbye(_));
db.add(msg)?;
db.add(&msg)?;
num_messages += 1;
if is_goodbye {
db.entity_db.data_store.sanity_check()?;
Expand Down

0 comments on commit 4e68958

Please sign in to comment.