Merge pull request #1363 from croneter/py3-fix-typeerror
Fix rare TypeError: expected string or buffer on playback start
This commit is contained in:
commit
0ad7f89a62
1 changed files with 1 additions and 1 deletions
|
@ -288,7 +288,7 @@ class KodiMonitor(xbmc.Monitor):
|
|||
LOG.debug('Detected different path')
|
||||
try:
|
||||
tmp_plex_id = int(utils.REGEX_PLEX_ID.findall(path)[0])
|
||||
except IndexError:
|
||||
except (IndexError, TypeError):
|
||||
LOG.debug('No Plex id in path, need to init playqueue')
|
||||
initialize = True
|
||||
else:
|
||||
|
|
Loading…
Reference in a new issue