fix room list fetch when attempting to cascade permissions. fixes #20.

This commit is contained in:
William Kray
2026-04-06 10:27:34 -07:00
parent 846249b3f0
commit 1ec4523fc1
2 changed files with 3 additions and 3 deletions
+2 -2
View File
@@ -809,8 +809,8 @@ class CommunityBot(Plugin):
if not changed_users:
return
# Get all rooms in the space
space_rooms = await self.client.get_joined_rooms()
# Get all rooms in the space (excludes non-child rooms like banlist policy rooms)
space_rooms = await self.get_space_roomlist()
success_rooms = []
failed_rooms = []