diff options
author | Tom Smeding <tom.smeding@gmail.com> | 2020-09-21 22:11:43 +0200 |
---|---|---|
committer | Tom Smeding <tom.smeding@gmail.com> | 2021-01-28 22:20:13 +0100 |
commit | 08665c0409d25cdc3558b7a9e175e342acf08aeb (patch) | |
tree | 12548a3ca5995ad6d9b018dae3755a239623bc38 | |
parent | 653c5d682fb23a57cb39255da0164636ddefb7ab (diff) |
rust: Bel on incoming message
-rw-r--r-- | rust/src/main.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/rust/src/main.rs b/rust/src/main.rs index 5a50f3b..1f26d11 100644 --- a/rust/src/main.rs +++ b/rust/src/main.rs @@ -320,6 +320,7 @@ impl App { self.append_history_item(&room, HItem::Service(format!("Join: <{}>", username))).await.unwrap(); } PushMessage::Message(msg) => { + bel::bel(); self.add_message(msg).await.unwrap(); } PushMessage::Online{ sessions: _, username: _ } => {} |