From 0aad6d15ab8fd72e13f97d3751be36f7c6361b5b Mon Sep 17 00:00:00 2001 From: Daisuke Murase Date: Thu, 16 Jan 2025 10:04:56 -0800 Subject: [PATCH] ignore error here --- livekit/src/rtc_engine/rtc_session.rs | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/livekit/src/rtc_engine/rtc_session.rs b/livekit/src/rtc_engine/rtc_session.rs index 00cadb01..90fd6d73 100644 --- a/livekit/src/rtc_engine/rtc_session.rs +++ b/livekit/src/rtc_engine/rtc_session.rs @@ -608,9 +608,7 @@ impl SessionInner { EngineError::Internal(format!("failed to send data packet: {:?}", err).into()) }); - if let Err(_) = tx.send(result) { - log::error!("failed to send publish_data result"); - } + let _ = tx.send(result); } }