Fix sync if Kodi playlist has been deleted
This commit is contained in:
parent
20fef65b3d
commit
8ee20b1bba
1 changed files with 4 additions and 1 deletions
|
@ -301,7 +301,10 @@ def full_sync():
|
||||||
elif playlist.plex_updatedat != api.updated_at():
|
elif playlist.plex_updatedat != api.updated_at():
|
||||||
LOG.debug('Detected changed Plex playlist %s: %s',
|
LOG.debug('Detected changed Plex playlist %s: %s',
|
||||||
api.plex_id(), api.title())
|
api.plex_id(), api.title())
|
||||||
delete_kodi_playlist(playlist)
|
if exists(playlist.kodi_path):
|
||||||
|
delete_kodi_playlist(playlist)
|
||||||
|
else:
|
||||||
|
update_plex_table(playlist, delete=True)
|
||||||
create_kodi_playlist(api.plex_id())
|
create_kodi_playlist(api.plex_id())
|
||||||
except PL.PlaylistError:
|
except PL.PlaylistError:
|
||||||
LOG.info('Skipping playlist %s: %s', api.plex_id(), api.title())
|
LOG.info('Skipping playlist %s: %s', api.plex_id(), api.title())
|
||||||
|
|
Loading…
Reference in a new issue