Merge pull request #1362 from croneter/fix-typeerror

Fix rare TypeError: expected string or buffer on playback start
This commit is contained in:
croneter 2021-02-24 17:41:50 +01:00 committed by GitHub
commit 8aa5890e67
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -289,7 +289,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: