From 2edcf26110686f5a5d6b8efcb900ec7c918c8560 Mon Sep 17 00:00:00 2001 From: JonnyWong16 Date: Sun, 27 May 2018 13:07:18 -0700 Subject: [PATCH] Use HTTPS for cloudinary urls --- plexpy/helpers.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/plexpy/helpers.py b/plexpy/helpers.py index 03a20fb4..996cffff 100644 --- a/plexpy/helpers.py +++ b/plexpy/helpers.py @@ -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)