body is bytes

This commit is contained in:
j 2018-01-12 11:37:20 +01:00
parent f44584f131
commit 341e1bd892
1 changed files with 1 additions and 1 deletions

View File

@ -37,7 +37,7 @@ def api(request):
response['Access-Control-Allow-Origin'] = '*'
return response
if request.META.get('CONTENT_TYPE') == 'application/json':
r = json.loads(request.body)
r = json.loads(request.body.decode('utf-8'))
action = r['action']
data = r.get('data', {})
else: