️ Remove the periodic pooling to get the rooms (joined or not)

This commit is contained in:
2023-12-31 15:04:18 +01:00
parent 66f4ba6a7e
commit 04628ae10d
5 changed files with 170 additions and 114 deletions

View File

@@ -13,7 +13,6 @@ pub struct Sender<T>(_Sender<T>);
// TODO: Handle error
impl<T> Sender<T> {
pub(super) async fn send(self, t: T) {
// self.0.send(t).unwrap();
let _ = self.0.send(t).await;
}
}