Fix: room query limit cutting out some rooms
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
This commit is contained in:
parent
7728f5d16d
commit
ccb91f3576
1 changed files with 1 additions and 1 deletions
|
@ -136,7 +136,7 @@ class MatrixHelper:
|
|||
return room
|
||||
|
||||
async def get_rooms(self):
|
||||
return self._admin_client.room.lists()
|
||||
return self._admin_client.room.lists(limit=200, recent_first=False, orderby="joined_local_members")
|
||||
|
||||
async def get_users(self):
|
||||
return self._admin_client.user.lists()
|
||||
|
|
Loading…
Reference in a new issue