diff options
author | 2025-03-27 14:57:48 +0000 | |
---|---|---|
committer | 2025-03-27 14:57:48 +0000 | |
commit | 83a6aa0574190137b38331bd53795324139237cf (patch) | |
tree | 0cfbe858fb09325d8347b15b641a06df8d82db15 /filamento/src/logic/mod.rs | |
parent | e703284539384b461d204c73e7e14daead3f06d9 (diff) | |
download | luz-83a6aa0574190137b38331bd53795324139237cf.tar.gz luz-83a6aa0574190137b38331bd53795324139237cf.tar.bz2 luz-83a6aa0574190137b38331bd53795324139237cf.zip |
feat: remove `UpdateMessage::Error` variant
Diffstat (limited to 'filamento/src/logic/mod.rs')
-rw-r--r-- | filamento/src/logic/mod.rs | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/filamento/src/logic/mod.rs b/filamento/src/logic/mod.rs index dc262a9..61d78bf 100644 --- a/filamento/src/logic/mod.rs +++ b/filamento/src/logic/mod.rs @@ -54,12 +54,6 @@ impl ClientLogic { &self.update_sender } - pub async fn handle_unsupported(&self, stanza: impl Into<Stanza>) { - let stanza: Stanza = stanza.into(); - warn!("received unsupported stanza: {:?}", stanza); - self.handle_update(UpdateMessage::Unsupported(stanza)).await; - } - pub async fn handle_update(&self, update: UpdateMessage) { // TODO: impl fmt info!("{:?}", update); |