mirror of
https://github.com/element-hq/synapse.git
synced 2026-08-28 05:04:38 +00:00
SYN-141: Decode the query params as UTF-8
This commit is contained in:
@@ -428,7 +428,8 @@ class TransportLayer(object):
|
||||
self._with_authentication(
|
||||
lambda origin, content, query, query_type:
|
||||
handler.on_query_request(
|
||||
query_type, {k: v[0] for k, v in query.items()}
|
||||
query_type,
|
||||
{k: v[0].decode("utf-8") for k, v in query.items()}
|
||||
)
|
||||
)
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user