diff options
Diffstat (limited to 'server/szurubooru/func/posts.py')
| -rw-r--r-- | server/szurubooru/func/posts.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/server/szurubooru/func/posts.py b/server/szurubooru/func/posts.py index 0493681..be2259c 100644 --- a/server/szurubooru/func/posts.py +++ b/server/szurubooru/func/posts.py @@ -650,7 +650,8 @@ def update_post_content(post: model.Post, content: Optional[bytes]) -> None: image = images.Image(content) post.canvas_width = image.width post.canvas_height = image.height - except errors.ProcessingError: + except errors.ProcessingError as ex: + logger.exception(ex) if not config.config["allow_broken_uploads"]: raise InvalidPostContentError("Unable to process image metadata") else: |