frostyx / copr / copr

Forked from copr/copr 8 years ago
Clone

566a23b frontend: don't traceback on file upload

Authored and Committed by frostyx 2 years ago
    frontend: don't traceback on file upload
    
    Fix #2293
    
    Previously, `flask.request.json` returned either parsed JSON or None,
    if request wasn't in a JSON format. Now it tracebacks instead.
    
    The previous behavior can be achieved via
    `flask.request.get_json(silent=True)`