summary refs log tree commit diff
path: root/synapse/storage/media_repository.py
diff options
context:
space:
mode:
Diffstat (limited to 'synapse/storage/media_repository.py')
-rw-r--r--synapse/storage/media_repository.py15
1 files changed, 9 insertions, 6 deletions
diff --git a/synapse/storage/media_repository.py b/synapse/storage/media_repository.py
index 2d3a2d1ccb..b3f1fc087b 100644
--- a/synapse/storage/media_repository.py
+++ b/synapse/storage/media_repository.py
@@ -50,20 +50,21 @@ class MediaRepositoryStore(SQLBaseStore):
             "local_media_thumbnails",
             {"media_id": media_id},
             (
-                "thumbnail_width", "thumbnail_height",
+                "thumbnail_width", "thumbnail_height", "thumbnail_method",
                 "thumbnail_type", "thumbnail_length",
             )
         )
 
     def store_local_thumbnail(self, media_id, thumbnail_width,
-                              thumbnail_height, thumbnail_type,
-                              thumbnail_length):
+                              thumbnail_height, thumbnail_method,
+                              thumbnail_type, thumbnail_length):
         return self._simple_insert(
             "local_media_thumbnails",
             {
                 "media_id": media_id,
                 "thumbnail_width": thumbnail_width,
                 "thumbnail_height": thumbnail_height,
+                "thumbnail_method": thumbnail_method,
                 "thumbnail_type": thumbnail_type,
                 "thumbnail_length": thumbnail_length,
             }
@@ -101,15 +102,16 @@ class MediaRepositoryStore(SQLBaseStore):
             "remote_media_cache_thumbnails",
             {"origin": origin, "media_id": media_id},
             (
-                "thumbnail_width", "thumbnail_height",
+                "thumbnail_width", "thumbnail_height", "thumbnail_method"
                 "thumbnail_type", "thumbnail_length",
                 "filesystem_id"
             )
         )
 
     def store_remote_media_thumbnail(self, origin, media_id, thumbnail_width,
-                                     thumbnail_height, thumbnail_type,
-                                     thumbnail_length, filesystem_id):
+                                     thumbnail_height, thumbnail_method,
+                                     thumbnail_type, thumbnail_length,
+                                     filesystem_id):
         return self._simple_insert(
             "remote_media_cache_thumbnails",
             {
@@ -117,6 +119,7 @@ class MediaRepositoryStore(SQLBaseStore):
                 "media_id": media_id,
                 "thumbnail_width": thumbnail_width,
                 "thumbnail_height": thumbnail_height,
+                "thumbnail_method": thumbnail_method,
                 "thumbnail_type": thumbnail_type,
                 "thumbnail_length": thumbnail_length,
                 "filesystem_id": filesystem_id,