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)
-
+
## 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 @@
|
|
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 @@
|
|
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):