Add text/json as a mimetype to try deserializing

Fixes #503
This commit is contained in:
Toshio Kuratomi 2014-12-16 13:54:23 -08:00
parent 07989f1f49
commit 9c6826e928

View file

@ -426,7 +426,8 @@ def main():
uresp[ukey] = value uresp[ukey] = value
if 'content_type' in uresp: 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: try:
js = json.loads(content) js = json.loads(content)
uresp['json'] = js uresp['json'] = js