1
0
mirror of https://github.com/actix/examples synced 2025-06-26 17:17:42 +02:00

remove select macro from echo example

This commit is contained in:
Rob Ede
2022-07-11 20:19:20 +01:00
parent a4a060994d
commit fd17252725
9 changed files with 31 additions and 23 deletions

View File

@ -78,7 +78,7 @@ impl Actor for WsChatSession {
type Context = ws::WebsocketContext<Self>;
fn started(&mut self, ctx: &mut Self::Context) {
self.join_room("Main", ctx);
self.join_room("main", ctx);
}
fn stopped(&mut self, _ctx: &mut Self::Context) {