Abort if no xml received from PMS
This commit is contained in:
parent
20cf0cece5
commit
18cdfa192f
1 changed files with 5 additions and 0 deletions
|
@ -38,6 +38,11 @@ class Playback_Starter(Thread):
|
||||||
# Todo: Warn user with dialog
|
# Todo: Warn user with dialog
|
||||||
return
|
return
|
||||||
xml = GetPlexMetadata(plex_id)
|
xml = GetPlexMetadata(plex_id)
|
||||||
|
try:
|
||||||
|
xml[0].attrib
|
||||||
|
except (TypeError, AttributeError):
|
||||||
|
log.error('Could not get a PMS xml for plex id %s' % plex_id)
|
||||||
|
return
|
||||||
if xml[0].attrib.get('type') == PLEX_TYPE_PHOTO:
|
if xml[0].attrib.get('type') == PLEX_TYPE_PHOTO:
|
||||||
# Photo
|
# Photo
|
||||||
result = Playback_Successful()
|
result = Playback_Successful()
|
||||||
|
|
Loading…
Reference in a new issue