mirror of
https://gitlab.com/SIGBUS/nyaa.git
synced 2024-12-22 20:50:00 +00:00
Wait, that was no dict at all! Fix v1 api default
This commit is contained in:
parent
0e57378359
commit
7066fb258e
|
@ -93,7 +93,8 @@ def api_upload(upload_request, user):
|
||||||
else:
|
else:
|
||||||
form_info_as_dict.append((k, v))
|
form_info_as_dict.append((k, v))
|
||||||
# Hack for while v1 is still being used: default trusted to true
|
# Hack for while v1 is still being used: default trusted to true
|
||||||
form_info_as_dict.setdefault('is_trusted', True)
|
if not [x for x in form_info_as_dict if x[0] == 'is_trusted']:
|
||||||
|
form_info_as_dict.append(('is_trusted', True))
|
||||||
form_info = ImmutableMultiDict(form_info_as_dict)
|
form_info = ImmutableMultiDict(form_info_as_dict)
|
||||||
except Exception as e:
|
except Exception as e:
|
||||||
return flask.make_response(flask.jsonify(
|
return flask.make_response(flask.jsonify(
|
||||||
|
|
Loading…
Reference in a new issue