We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7801c11 commit 6cf0aceCopy full SHA for 6cf0ace
flask_graphql/graphqlview.py
@@ -129,7 +129,7 @@ def parse_body(self, request):
129
130
elif content_type == 'application/json':
131
try:
132
- request_json = json.loads(request.data.decode())
+ request_json = json.loads(request.data.decode('utf8'))
133
assert isinstance(request_json, dict)
134
return request_json
135
except:
0 commit comments