mirror of
https://git.anonymousland.org/anonymousland/synapse.git
synced 2024-10-01 11:49:51 -04:00
Fix SQL for postgres again
This commit is contained in:
parent
3e573a5c6b
commit
df7cf6c0eb
@ -160,7 +160,7 @@ class RoomMemberStore(SQLBaseStore):
|
||||
|
||||
def _get_rooms_for_user_where_membership_is_txn(self, txn, user_id,
|
||||
membership_list):
|
||||
where_clause = "user_id = ? AND (%s) AND forgotten == 0" % (
|
||||
where_clause = "user_id = ? AND (%s) AND forgotten = 0" % (
|
||||
" OR ".join(["membership = ?" for _ in membership_list]),
|
||||
)
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user