From 652ca73126d81e99a7c2ca7d8a04771599ada25a Mon Sep 17 00:00:00 2001 From: JonnyWong16 Date: Sat, 18 Jun 2016 09:33:37 -0700 Subject: [PATCH] Make "Enable Posters in Notifications" a global toggle --- plexpy/notification_handler.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plexpy/notification_handler.py b/plexpy/notification_handler.py index b64afab5..9319d9a1 100644 --- a/plexpy/notification_handler.py +++ b/plexpy/notification_handler.py @@ -624,7 +624,7 @@ def build_notify_text(session=None, timeline=None, notify_action=None, agent_id= else: thumb = None - if thumb: + if plexpy.CONFIG.NOTIFY_UPLOAD_POSTERS and thumb: # Try to retrieve a poster_url from the database data_factory = datafactory.DataFactory() poster_url = data_factory.get_poster_url(rating_key=poster_key)