diff options
author | Erik Johnston <erik@matrix.org> | 2022-04-07 15:18:02 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-04-07 14:18:02 +0000 |
commit | 36af768c131f6c253d4844a9780300525876fd8c (patch) | |
tree | 28f32b3e91a0ed72b33a68c99166b4ca7862d1da | |
parent | Do not add groups to sync results if disabled. (#12408) (diff) | |
download | synapse-36af768c131f6c253d4844a9780300525876fd8c.tar.xz |
Fix fetching public rooms over federation (#12410)
Broke by #12364
-rw-r--r-- | changelog.d/12410.bugfix | 1 | ||||
-rw-r--r-- | synapse/federation/transport/client.py | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/changelog.d/12410.bugfix b/changelog.d/12410.bugfix new file mode 100644 index 0000000000..d042425d20 --- /dev/null +++ b/changelog.d/12410.bugfix @@ -0,0 +1 @@ +Fix a spec compliance issue where requests to the `/publicRooms` federation API would specify `limit` as a string. \ No newline at end of file diff --git a/synapse/federation/transport/client.py b/synapse/federation/transport/client.py index d4b3cb3e98..66a41e45fc 100644 --- a/synapse/federation/transport/client.py +++ b/synapse/federation/transport/client.py @@ -509,7 +509,7 @@ class TransportLayerClient: 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] |