Catch exceptions during photo metadata reload
This commit is contained in:
parent
df32b0c11d
commit
3a01285f09
1 changed files with 6 additions and 1 deletions
|
@ -709,7 +709,12 @@ def post_photo_refresh_metadata(photoid):
|
|||
Refresh the file metadata.
|
||||
'''
|
||||
photo = P_photo(photoid, response_type='json')
|
||||
try:
|
||||
photo.reload_metadata()
|
||||
except exceptions.EtiquetteException as e:
|
||||
response = jsonify.exception(e)
|
||||
response = jsonify.make_json_response(response, status=400)
|
||||
flask.abort(response)
|
||||
return jsonify.make_json_response({})
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue