Fix AttributeError
This commit is contained in:
parent
2144995a29
commit
058d417e78
1 changed files with 1 additions and 1 deletions
|
@ -493,7 +493,7 @@ class Movies(Items):
|
||||||
for movie in boxset_movies:
|
for movie in boxset_movies:
|
||||||
plexid = movie[0]
|
plexid = movie[0]
|
||||||
movieid = movie[1]
|
movieid = movie[1]
|
||||||
self.kodi_db.removefromBoxset(movieid)
|
self.kodi_db.remove_from_set(movieid)
|
||||||
# Update plex reference
|
# Update plex reference
|
||||||
self.plex_db.updateParentId(plexid, None)
|
self.plex_db.updateParentId(plexid, None)
|
||||||
self.kodicursor.execute("DELETE FROM sets WHERE idSet = ?",
|
self.kodicursor.execute("DELETE FROM sets WHERE idSet = ?",
|
||||||
|
|
Loading…
Reference in a new issue