Add text/json as a mimetype to try deserializing

Fixes #503
reviewable/pr18780/r1
Toshio Kuratomi 11 years ago
parent 07989f1f49
commit 9c6826e928

@ -426,7 +426,8 @@ def main():
uresp[ukey] = value
if 'content_type' in uresp:
if uresp['content_type'].startswith('application/json'):
if uresp['content_type'].startswith('application/json') or \
uresp['content_type'].startswith('text/json'):
try:
js = json.loads(content)
uresp['json'] = js

Loading…
Cancel
Save