From da3d84c9d87a146bdc091b37fb38c45bcf013f63 Mon Sep 17 00:00:00 2001 From: Joscha Date: Sat, 4 Mar 2023 22:00:37 +0100 Subject: [PATCH] Fix connecting to rooms as bot instead of human --- src/ui/euph/room.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/ui/euph/room.rs b/src/ui/euph/room.rs index a1aa873..740d9f7 100644 --- a/src/ui/euph/room.rs +++ b/src/ui/euph/room.rs @@ -103,6 +103,7 @@ impl EuphRoom { .clone() .room(self.vault().room().to_string()) .name(format!("{room}-{}", next_instance_id)) + .human(true) .username(self.config.username.clone()) .force_username(self.config.force_username) .password(self.config.password.clone());