Fix: room query limit cutting out some rooms
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful

This commit is contained in:
Dorian Zedler 2023-02-11 10:38:19 +01:00
parent 7728f5d16d
commit ccb91f3576
Signed by: dozedler
GPG key ID: 989DE36109AFA354

View file

@ -136,7 +136,7 @@ class MatrixHelper:
return room return room
async def get_rooms(self): 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): async def get_users(self):
return self._admin_client.user.lists() return self._admin_client.user.lists()