Fix KeyError

This commit is contained in:
croneter 2018-11-25 20:28:22 +01:00
parent 697b66167c
commit 69e65f5ca6

View file

@ -91,8 +91,8 @@ class MusicMixin(object):
# Remove the album # Remove the album
self.remove_album(db_item['kodi_id']) self.remove_album(db_item['kodi_id'])
# Show verification # Show verification
if (not self.plexdb.artist_has_albums(db_item['album_id']) and if (not self.plexdb.artist_has_albums(db_item['kodi_id']) and
not self.plexdb.artist_has_songs(db_item['album_id'])): not self.plexdb.artist_has_songs(db_item['kodi_id'])):
# There's no other season or episode left, delete the show # There's no other season or episode left, delete the show
self.remove_artist(db_item['parent_id']) self.remove_artist(db_item['parent_id'])
self.plexdb.remove(db_item['artist_id'], v.KODI_TYPE_ARTIST) self.plexdb.remove(db_item['artist_id'], v.KODI_TYPE_ARTIST)