0
0
Fork 1
mirror of https://mau.dev/maunium/synapse.git synced 2024-06-28 07:28:19 +02:00

Remove default public rooms limit

This commit is contained in:
Erik Johnston 2016-09-15 13:56:20 +01:00
parent b82fa849c8
commit 68c1ed4d1a

View file

@ -319,7 +319,7 @@ class PublicRoomListRestServlet(ClientV1RestServlet):
else:
pass
limit = parse_integer(request, "limit", 100)
limit = parse_integer(request, "limit", 0)
since_token = parse_string(request, "since", None)
handler = self.hs.get_room_list_handler()