mirror of
https://github.com/Tautulli/Tautulli.git
synced 2025-07-08 14:10:52 -07:00
Use HTTPS for cloudinary urls
This commit is contained in:
parent
a9fdf73e8b
commit
2edcf26110
1 changed files with 2 additions and 1 deletions
|
@ -837,7 +837,8 @@ def cloudinary_transform(rating_key=None, width=1000, height=1500, opacity=100,
|
|||
img_options = {'format': img_format,
|
||||
'fetch_format': 'auto',
|
||||
'quality': 'auto',
|
||||
'version': int(time.time())}
|
||||
'version': int(time.time()),
|
||||
'secure': True}
|
||||
|
||||
if width != 1000:
|
||||
img_options['width'] = str(width)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue