From bc017cb0cb50031091e08b5eed80deabcce4ce8e Mon Sep 17 00:00:00 2001 From: miigotu <miigotu@gmail.com> Date: Sun, 13 Dec 2015 22:27:26 -0800 Subject: [PATCH] @fernandog you missed one =P Fixes https://github.com/SickRage/sickrage-issues/issues/215 --- sickbeard/notifiers/plex.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/sickbeard/notifiers/plex.py b/sickbeard/notifiers/plex.py index 0202013f2..c3c2e125b 100644 --- a/sickbeard/notifiers/plex.py +++ b/sickbeard/notifiers/plex.py @@ -160,8 +160,7 @@ class PLEXNotifier(object): if sickbeard.USE_PLEX: update_text = common.notifyStrings[common.NOTIFY_LOGIN_TEXT] title = common.notifyStrings[common.NOTIFY_LOGIN] - if update_text and title and new_version: - self._notify_pmc(update_text.format(ipaddress), title) + self._notify_pmc(update_text.format(ipaddress), title) def test_notify_pmc(self, host, username, password): return self._notify_pmc('This is a test notification from SickRage', 'Test Notification', host, username, password, force=True) -- GitLab