From a4241310b143b636f7396aa14e6c2d06ede5589f Mon Sep 17 00:00:00 2001 From: Moritz Date: Tue, 11 Feb 2025 22:35:46 +0100 Subject: [PATCH] print joined rooms --- whisper.py | 1 + 1 file changed, 1 insertion(+) diff --git a/whisper.py b/whisper.py index db6a0b9..571c76c 100644 --- a/whisper.py +++ b/whisper.py @@ -51,6 +51,7 @@ async def main() -> None: await client.sync() for room in client.invited_rooms: await client.join(room) + print(f"joined room {room}") # Watch out! If you join an old room you'll see lots of old messages await client.sync_forever(timeout=30000) # milliseconds