From 1d168e6f474a663ca56cfbbe84483b57cebbfa65 Mon Sep 17 00:00:00 2001 From: krypton-byte Date: Thu, 2 Apr 2026 01:19:16 +0700 Subject: [PATCH] fix(tryx): log unsupported event types in event handling --- libs/whatsapp-rust | 2 +- src/clients/tryx.rs | 3 +++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/libs/whatsapp-rust b/libs/whatsapp-rust index e487c20..38c27aa 160000 --- a/libs/whatsapp-rust +++ b/libs/whatsapp-rust @@ -1 +1 @@ -Subproject commit e487c20e9d42d2cd9af296794e2610ad99002a8b +Subproject commit 38c27aa2c4dfd66d1eb4f4060800d9bdc02c8eb1 diff --git a/src/clients/tryx.rs b/src/clients/tryx.rs index 6865a4a..b287b7a 100644 --- a/src/clients/tryx.rs +++ b/src/clients/tryx.rs @@ -633,6 +633,9 @@ impl Tryx { Py::new(py, EvDeleteMessageForMeUpdate::from(delete_message_for_me_update)).map(|event| event.into_any()) }).await; } + _ => { + debug!("received unsupported event type: {:?}", event); + } } } })