From 4712798bf568b8320518b16a8a1639b68856e97b Mon Sep 17 00:00:00 2001 From: Joscha Date: Tue, 5 Jul 2022 20:18:37 +0200 Subject: [PATCH] Stay connected if room requires auth Even though authentication is not possible yet --- src/euph/room.rs | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/src/euph/room.rs b/src/euph/room.rs index 418851a..86de46d 100644 --- a/src/euph/room.rs +++ b/src/euph/room.rs @@ -131,10 +131,7 @@ impl State { async fn on_data(&mut self, data: Data) -> anyhow::Result<()> { match data { - Data::BounceEvent(_) => { - error!("e&{}: auth not implemented", self.name); - bail!("auth not implemented"); - } + Data::BounceEvent(_) => {} Data::DisconnectEvent(d) => { warn!("e&{}: disconnected for reason {:?}", self.name, d.reason); }