mirror of
https://github.com/SickGear/SickGear.git
synced 2024-12-03 01:43:37 +00:00
Fix for XBMC notifier, KeyError: 'result'
This commit is contained in:
parent
172dec1017
commit
356ac845d4
1 changed files with 1 additions and 1 deletions
|
@ -143,7 +143,7 @@ class XBMCNotifier:
|
||||||
command = '{"jsonrpc":"2.0","method":"GUI.ShowNotification","params":{"title":"%s","message":"%s", "image": "%s"},"id":1}' % (
|
command = '{"jsonrpc":"2.0","method":"GUI.ShowNotification","params":{"title":"%s","message":"%s", "image": "%s"},"id":1}' % (
|
||||||
title.encode("utf-8"), message.encode("utf-8"), self.sb_logo_url)
|
title.encode("utf-8"), message.encode("utf-8"), self.sb_logo_url)
|
||||||
notifyResult = self._send_to_xbmc_json(command, curHost, username, password)
|
notifyResult = self._send_to_xbmc_json(command, curHost, username, password)
|
||||||
if notifyResult:
|
if len(notifyResult) and getattr(notifyResult, 'result', None):
|
||||||
result += curHost + ':' + notifyResult["result"].decode(sickbeard.SYS_ENCODING)
|
result += curHost + ':' + notifyResult["result"].decode(sickbeard.SYS_ENCODING)
|
||||||
else:
|
else:
|
||||||
if sickbeard.XBMC_ALWAYS_ON or force:
|
if sickbeard.XBMC_ALWAYS_ON or force:
|
||||||
|
|
Loading…
Reference in a new issue