Fix TypeError for malformed browsing xml
This commit is contained in:
parent
d2166cd604
commit
ec1bae3c51
1 changed files with 1 additions and 1 deletions
|
@ -857,7 +857,7 @@ def browse_plex(key=None, plex_section_id=None):
|
||||||
containerSize=int(settings('limitindex')))
|
containerSize=int(settings('limitindex')))
|
||||||
try:
|
try:
|
||||||
xml[0].attrib
|
xml[0].attrib
|
||||||
except (ValueError, AttributeError, IndexError):
|
except (ValueError, AttributeError, IndexError, TypeError):
|
||||||
log.error('Could not browse to %s' % key)
|
log.error('Could not browse to %s' % key)
|
||||||
return xbmcplugin.endOfDirectory(HANDLE, False)
|
return xbmcplugin.endOfDirectory(HANDLE, False)
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue