summary refs log tree commit diff
path: root/synapse/storage
diff options
context:
space:
mode:
Diffstat (limited to 'synapse/storage')
-rw-r--r--synapse/storage/media_repository.py12
1 files changed, 6 insertions, 6 deletions
diff --git a/synapse/storage/media_repository.py b/synapse/storage/media_repository.py
index b3f1fc087b..a848662716 100644
--- a/synapse/storage/media_repository.py
+++ b/synapse/storage/media_repository.py
@@ -56,8 +56,8 @@ class MediaRepositoryStore(SQLBaseStore):
         )
 
     def store_local_thumbnail(self, media_id, thumbnail_width,
-                              thumbnail_height, thumbnail_method,
-                              thumbnail_type, thumbnail_length):
+                              thumbnail_height, thumbnail_type,
+                              thumbnail_method, thumbnail_length):
         return self._simple_insert(
             "local_media_thumbnails",
             {
@@ -108,10 +108,10 @@ class MediaRepositoryStore(SQLBaseStore):
             )
         )
 
-    def store_remote_media_thumbnail(self, origin, media_id, thumbnail_width,
-                                     thumbnail_height, thumbnail_method,
-                                     thumbnail_type, thumbnail_length,
-                                     filesystem_id):
+    def store_remote_media_thumbnail(self, origin, media_id, filesystem_id,
+                                     thumbnail_width, thumbnail_height,
+                                     thumbnail_type, thumbnail_method,
+                                     thumbnail_length):
         return self._simple_insert(
             "remote_media_cache_thumbnails",
             {