mirror of
https://git.anonymousland.org/anonymousland/synapse.git
synced 2025-08-08 01:32:17 -04:00
Fix GET request on /_synapse/admin/v2/users endpoint (#6563)
Fixes #6552
This commit is contained in:
parent
573fee759c
commit
7caaa29daa
3 changed files with 44 additions and 2 deletions
|
@ -526,9 +526,9 @@ class DataStore(
|
|||
|
||||
attr_filter = {}
|
||||
if not guests:
|
||||
attr_filter["is_guest"] = False
|
||||
attr_filter["is_guest"] = 0
|
||||
if not deactivated:
|
||||
attr_filter["deactivated"] = False
|
||||
attr_filter["deactivated"] = 0
|
||||
|
||||
return self.db.simple_select_list_paginate(
|
||||
desc="get_users_paginate",
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue