diff options
author | 2025-04-08 11:29:31 +0100 | |
---|---|---|
committer | 2025-04-08 11:29:31 +0100 | |
commit | 0b19cb38183929d3f242cfd11c34426d9302697c (patch) | |
tree | f03a20b1b85d677c182a9d7a2c34c77a29ac6df7 /filamento/examples | |
parent | 5b644e2dc8712d56931b410b9c46dae1ef36e691 (diff) | |
download | luz-0b19cb38183929d3f242cfd11c34426d9302697c.tar.gz luz-0b19cb38183929d3f242cfd11c34426d9302697c.tar.bz2 luz-0b19cb38183929d3f242cfd11c34426d9302697c.zip |
fix(filamento): check if nick and avatar were actually changed
Diffstat (limited to '')
-rw-r--r-- | filamento/examples/example.rs | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/filamento/examples/example.rs b/filamento/examples/example.rs index 12ede0d..8ebfde0 100644 --- a/filamento/examples/example.rs +++ b/filamento/examples/example.rs @@ -52,10 +52,10 @@ async fn main() { client.connect().await.unwrap(); tokio::time::sleep(Duration::from_secs(5)).await; info!("changing nick"); - // client - // .change_nick(Some("britney".to_string())) - // .await - // .unwrap(); + client + .change_nick(Some("britney".to_string())) + .await + .unwrap(); info!("sending message"); client .send_message( |