Skip to content
Snippets Groups Projects
Commit ad7ec63d authored by Richard van der Hoff's avatar Richard van der Hoff
Browse files

Use the right path for url_preview thumbnails

This was introduced by #2627: we were overwriting the original media for url
previews with the thumbnails :/

(fixes https://github.com/vector-im/riot-web/issues/6012, hopefully)
parent d57765fc
No related branches found
No related tags found
No related merge requests found
...@@ -164,6 +164,14 @@ class MediaStorage(object): ...@@ -164,6 +164,14 @@ class MediaStorage(object):
str str
""" """
if file_info.url_cache: if file_info.url_cache:
if file_info.thumbnail:
return self.filepaths.url_cache_thumbnail_rel(
media_id=file_info.file_id,
width=file_info.thumbnail_width,
height=file_info.thumbnail_height,
content_type=file_info.thumbnail_type,
method=file_info.thumbnail_method,
)
return self.filepaths.url_cache_filepath_rel(file_info.file_id) return self.filepaths.url_cache_filepath_rel(file_info.file_id)
if file_info.server_name: if file_info.server_name:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment