Fix rare TypeError: expected string or buffer on playback start

This commit is contained in:
croneter 2021-02-24 15:21:07 +01:00
parent 2e3a1c311e
commit caf8903873

View file

@ -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: