From 73a9cd40d393684b4e94fd3059b5c176bb90650d Mon Sep 17 00:00:00 2001 From: Jonas Platte Date: Mon, 4 Sep 2023 14:07:58 +0200 Subject: [PATCH] sdk: Remove warning about event without txn ID MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit … it doesn't make sense to have as long as it's still very common to get duplicate non-echo events from the SS proxy. --- crates/matrix-sdk-ui/src/timeline/event_handler.rs | 6 ------ 1 file changed, 6 deletions(-) diff --git a/crates/matrix-sdk-ui/src/timeline/event_handler.rs b/crates/matrix-sdk-ui/src/timeline/event_handler.rs index 9f83a5d27..688190466 100644 --- a/crates/matrix-sdk-ui/src/timeline/event_handler.rs +++ b/crates/matrix-sdk-ui/src/timeline/event_handler.rs @@ -933,12 +933,6 @@ impl<'a> TimelineEventHandler<'a> { } } - if txn_id.is_none() { - // The event was created by this client, but the server - // sent it back without a transaction ID. - warn!("Received remote echo without transaction ID"); - } - // TODO: Check whether anything is different about the // old and new item?