From 50165af4b7f531ad58f679799e1b4ea5aad12724 Mon Sep 17 00:00:00 2001 From: JonnyWong16 Date: Tue, 15 May 2018 20:38:25 -0700 Subject: [PATCH] Update tautulli.com URLs to HTTPS --- README.md | 4 ++-- data/interfaces/default/configuration_table.html | 2 +- data/interfaces/newsletters/recently_added.html | 16 ++++++++-------- .../newsletters/recently_added.internal.html | 16 ++++++++-------- plexpy/common.py | 6 +++--- plexpy/notifiers.py | 4 ++-- 6 files changed, 24 insertions(+), 24 deletions(-) diff --git a/README.md b/README.md index cb25b87d..be193fe6 100644 --- a/README.md +++ b/README.md @@ -27,9 +27,9 @@ This project is based on code from [Headphones](https://github.com/rembo10/headp ## Preview -* [Full preview gallery available on our website](http://tautulli.com) +* [Full preview gallery available on our website](https://tautulli.com) -![Tautulli Homepage](http://tautulli.com/images/screenshots/activity-compressed.jpg?v=2) +![Tautulli Homepage](https://tautulli.com/images/screenshots/activity-compressed.jpg?v=2) ## Installation and Support diff --git a/data/interfaces/default/configuration_table.html b/data/interfaces/default/configuration_table.html index 03334cce..d80b1442 100644 --- a/data/interfaces/default/configuration_table.html +++ b/data/interfaces/default/configuration_table.html @@ -78,7 +78,7 @@ DOCUMENTATION :: END Resources: - Tautulli Website | + Tautulli Website | GitHub Source | GitHub Issues | GitHub Wiki | diff --git a/data/interfaces/newsletters/recently_added.html b/data/interfaces/newsletters/recently_added.html index ea489e42..dd343e91 100644 --- a/data/interfaces/newsletters/recently_added.html +++ b/data/interfaces/newsletters/recently_added.html @@ -551,7 +551,7 @@
- +
${parameters['server_name']}
${parameters['start_date']} - ${parameters['end_date']}
@@ -570,7 +570,7 @@
- Recently Added Movies + Recently Added Movies
${len(recently_added['movie'])} movie${'s' if len(recently_added['movie']) > 1 else ''} @@ -598,7 +598,7 @@ - + @@ -688,7 +688,7 @@
- Recently Added TV Shows + Recently Added TV Shows
${len(recently_added['show'])} show${'s' if len(recently_added['show']) > 1 else ''} / @@ -727,7 +727,7 @@ - + @@ -840,7 +840,7 @@
- Recently Added Music + Recently Added Music
${len(recently_added['artist'])} artist${'s' if len(recently_added['artist']) > 1 else ''} / @@ -870,7 +870,7 @@ - + @@ -955,7 +955,7 @@
- Newsletter generated by Tautulli. + Newsletter generated by Tautulli.
diff --git a/data/interfaces/newsletters/recently_added.internal.html b/data/interfaces/newsletters/recently_added.internal.html index 203f0052..09e15bf7 100644 --- a/data/interfaces/newsletters/recently_added.internal.html +++ b/data/interfaces/newsletters/recently_added.internal.html @@ -552,7 +552,7 @@
- +
${parameters['server_name']}
${parameters['start_date']} - ${parameters['end_date']}
@@ -571,7 +571,7 @@
- Recently Added Movies + Recently Added Movies
${len(recently_added['movie'])} movie${'s' if len(recently_added['movie']) > 1 else ''} @@ -599,7 +599,7 @@ - + @@ -689,7 +689,7 @@
- Recently Added TV Shows + Recently Added TV Shows
${len(recently_added['show'])} show${'s' if len(recently_added['show']) > 1 else ''} / @@ -728,7 +728,7 @@ - + @@ -841,7 +841,7 @@
- Recently Added Music + Recently Added Music
${len(recently_added['artist'])} artist${'s' if len(recently_added['artist']) > 1 else ''} / @@ -871,7 +871,7 @@ - + @@ -956,7 +956,7 @@
- Newsletter generated by Tautulli. + Newsletter generated by Tautulli.
diff --git a/plexpy/common.py b/plexpy/common.py index bcc7da7b..93fb7f3a 100644 --- a/plexpy/common.py +++ b/plexpy/common.py @@ -33,9 +33,9 @@ DEFAULT_POSTER_THUMB = "interfaces/default/images/poster.png" DEFAULT_COVER_THUMB = "interfaces/default/images/cover.png" DEFAULT_ART = "interfaces/default/images/art.png" -ONLINE_POSTER_THUMB = "http://tautulli.com/images/poster.png" -ONLINE_COVER_THUMB = "http://tautulli.com/images/cover.png" -ONLINE_ART = "http://tautulli.com/images/art.png" +ONLINE_POSTER_THUMB = "https://tautulli.com/images/poster.png" +ONLINE_COVER_THUMB = "https://tautulli.com/images/cover.png" +ONLINE_ART = "https://tautulli.com/images/art.png" MEDIA_TYPE_HEADERS = { 'movie': 'Movies', diff --git a/plexpy/notifiers.py b/plexpy/notifiers.py index 6b6fbb36..89579a00 100644 --- a/plexpy/notifiers.py +++ b/plexpy/notifiers.py @@ -661,9 +661,9 @@ class PrettyMetadata(object): poster_url = self.parameters['poster_url'] if not poster_url: if self.media_type in ('artist', 'album', 'track'): - poster_url = 'http://tautulli.com/images/cover.png' + poster_url = common.ONLINE_COVER_THUMB else: - poster_url = 'http://tautulli.com/images/poster.png' + poster_url = common.ONLINE_POSTER_THUMB return poster_url def get_provider_name(self, provider):