summary refs log tree commit diff
path: root/synapse/config
diff options
context:
space:
mode:
authorrkfg <rkfg@rkfg.me>2021-04-14 18:30:59 +0300
committerGitHub <noreply@github.com>2021-04-14 16:30:59 +0100
commitc9a2b5d4022feab97fa1bce1d67360d09a6e3dcc (patch)
tree04256447b521e44e3981f1bd68080c37677d3530 /synapse/config
parentRemove redundant "coding: utf-8" lines (#9786) (diff)
downloadsynapse-c9a2b5d4022feab97fa1bce1d67360d09a6e3dcc.tar.xz
More robust handling of the Content-Type header for thumbnail generation (#9788)
Signed-off-by: Sergey Shpikin <rkfg@rkfg.me>
Diffstat (limited to 'synapse/config')
-rw-r--r--synapse/config/repository.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/synapse/config/repository.py b/synapse/config/repository.py
index 146bc55d6f..c78a83abe1 100644
--- a/synapse/config/repository.py
+++ b/synapse/config/repository.py
@@ -70,6 +70,7 @@ def parse_thumbnail_requirements(thumbnail_sizes):
         jpeg_thumbnail = ThumbnailRequirement(width, height, method, "image/jpeg")
         png_thumbnail = ThumbnailRequirement(width, height, method, "image/png")
         requirements.setdefault("image/jpeg", []).append(jpeg_thumbnail)
+        requirements.setdefault("image/jpg", []).append(jpeg_thumbnail)
         requirements.setdefault("image/webp", []).append(jpeg_thumbnail)
         requirements.setdefault("image/gif", []).append(png_thumbnail)
         requirements.setdefault("image/png", []).append(png_thumbnail)