Skip to content
This repository has been archived by the owner on Apr 26, 2024. It is now read-only.

Commit

Permalink
Fix fetching public rooms over federation
Browse files Browse the repository at this point in the history
Broke by #12364
  • Loading branch information
erikjohnston committed Apr 7, 2022
1 parent d1cd96c commit 8b4b065
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion synapse/federation/transport/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -509,7 +509,7 @@ async def get_public_rooms(
if third_party_instance_id:
args["third_party_instance_id"] = (third_party_instance_id,)
if limit:
args["limit"] = [limit]
args["limit"] = [str(limit)]
if since_token:
args["since"] = [since_token]

Expand Down

0 comments on commit 8b4b065

Please sign in to comment.