mirror of
https://github.com/SickGear/SickGear.git
synced 2025-01-05 17:43:37 +00:00
Fixes notification about XBMC host not being passed. Fixes echel0n/SickRage#389
This commit is contained in:
parent
b33e2be047
commit
4c5ea1a5eb
1 changed files with 5 additions and 1 deletions
|
@ -37,7 +37,11 @@ class PLEXNotifier(XBMCNotifier):
|
|||
def _notify_pmc(self, message, title="Sick Beard", host=None, username=None, password=None, force=False):
|
||||
# fill in omitted parameters
|
||||
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:
|
||||
username = sickbeard.PLEX_USERNAME
|
||||
if not password:
|
||||
|
|
Loading…
Reference in a new issue