mirror of
https://github.com/moparisthebest/SickRage
synced 2025-03-03 10:01:53 -05:00
Fixes notification about XBMC host not being passed. Fixes echel0n/SickRage#389
This commit is contained in:
parent
b33e2be047
commit
4c5ea1a5eb
@ -37,7 +37,11 @@ class PLEXNotifier(XBMCNotifier):
|
|||||||
def _notify_pmc(self, message, title="Sick Beard", host=None, username=None, password=None, force=False):
|
def _notify_pmc(self, message, title="Sick Beard", host=None, username=None, password=None, force=False):
|
||||||
# fill in omitted parameters
|
# fill in omitted parameters
|
||||||
if not host:
|
if not host:
|
||||||
host = sickbeard.PLEX_HOST
|
if sickbeard.PLEX_HOST:
|
||||||
|
host = sickbeard.PLEX_HOST # Use the default Plex host
|
||||||
|
else:
|
||||||
|
logger.log(u"No Plex host specified, check your settings", logger.DEBUG)
|
||||||
|
return False
|
||||||
if not username:
|
if not username:
|
||||||
username = sickbeard.PLEX_USERNAME
|
username = sickbeard.PLEX_USERNAME
|
||||||
if not password:
|
if not password:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user