Fix KeyError: u'kodi_fileid' for some Plex websocket messages

This commit is contained in:
croneter 2019-01-29 08:03:05 +01:00
parent 0c400b3563
commit 91fe4f827d

View file

@ -279,8 +279,12 @@ def process_playing(data):
LOG.debug('Updated current sessions. They are: %s',
PLAYSTATE_SESSIONS)
# Attach Kodi info to the session
PLAYSTATE_SESSIONS[session_key]['kodi_id'] = typus['kodi_id']
try:
PLAYSTATE_SESSIONS[session_key]['file_id'] = typus['kodi_fileid']
except KeyError:
# media type without file - no need to do anything
continue
PLAYSTATE_SESSIONS[session_key]['kodi_id'] = typus['kodi_id']
PLAYSTATE_SESSIONS[session_key]['kodi_type'] = typus['kodi_type']
session = PLAYSTATE_SESSIONS[session_key]
if utils.settings('plex_serverowned') != 'false':