mirror of
https://mau.dev/maunium/synapse.git
synced 2025-03-05 16:21:03 +01:00
Put function def back to the way it was
This commit is contained in:
parent
7a4632af9c
commit
6fcb25202f
1 changed files with 3 additions and 3 deletions
|
@ -312,9 +312,9 @@ class RoomListHandler(BaseHandler):
|
|||
if _matches_room_entry(result, search_filter):
|
||||
chunk.append(result)
|
||||
|
||||
@cachedInlineCallbacks(num_args=2, cache_context=True)
|
||||
def generate_room_entry(self, room_id, num_joined_users,
|
||||
cache_context, with_alias=True, allow_private=False):
|
||||
@cachedInlineCallbacks(num_args=1, cache_context=True)
|
||||
def generate_room_entry(self, room_id, num_joined_users, cache_context,
|
||||
with_alias=True, allow_private=False):
|
||||
"""Returns the entry for a room
|
||||
|
||||
Args:
|
||||
|
|
Loading…
Add table
Reference in a new issue