diff --git a/sickbeard/notifiers/plex.py b/sickbeard/notifiers/plex.py index de496dfef0211a8b4e526c6f2f835b8903f663e1..fccaa1db4f25482878cd0bea095531271f858304 100644 --- a/sickbeard/notifiers/plex.py +++ b/sickbeard/notifiers/plex.py @@ -151,7 +151,8 @@ class PLEXNotifier: if sickbeard.USE_PLEX: update_text = common.notifyStrings[common.NOTIFY_GIT_UPDATE_TEXT] title = common.notifyStrings[common.NOTIFY_GIT_UPDATE] - self._notify_pmc(update_text + new_version, title) + if update_text and title and new_version: + self._notify_pmc(update_text + new_version, 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)