Fix KeyError on playlist full sync

This commit is contained in:
croneter 2018-07-12 07:49:48 +02:00
parent c0d78bd273
commit b8286c9b14

View file

@ -188,7 +188,7 @@ def _full_sync():
except PlaylistError: except PlaylistError:
LOG.info('Skipping Kodi playlist %s', path) LOG.info('Skipping Kodi playlist %s', path)
for kodi_path in old_kodi_paths: for kodi_path in old_kodi_paths:
playlist = db.get_playlist(kodi_path=kodi_path) playlist = db.get_playlist(path=kodi_path)
try: try:
plex_pl.delete(playlist) plex_pl.delete(playlist)
except PlaylistError: except PlaylistError: