mirror of
https://git.anonymousland.org/anonymousland/synapse.git
synced 2025-11-13 21:20:38 -05:00
Merge remote-tracking branch 'origin/develop' into dbkr/password_reset_case_insensitive
This commit is contained in:
commit
bcb1245a2d
17 changed files with 691 additions and 477 deletions
|
|
@ -320,6 +320,9 @@ class RoomStore(SQLBaseStore):
|
|||
txn.execute(sql, (prev_id, current_id, limit,))
|
||||
return txn.fetchall()
|
||||
|
||||
if prev_id == current_id:
|
||||
return defer.succeed([])
|
||||
|
||||
return self.runInteraction(
|
||||
"get_all_new_public_rooms", get_all_new_public_rooms
|
||||
)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue