Skip to content
Snippets Groups Projects
Commit db7e8b56 authored by Mark Haines's avatar Mark Haines
Browse files

SYN-141: Decode the query params as UTF-8

parent 54c438d8
No related merge requests found
......@@ -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()}
)
)
)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment