diff --git a/sickbeard/notifiers/plex.py b/sickbeard/notifiers/plex.py
index 0202013f215365381fc22c902f5d2e78297dca25..c3c2e125bdf49cea0bc400fc9a73c4e74701a754 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)