mirror of
https://github.com/jellyfin/jellyfin-kodi.git
synced 2024-11-10 04:06:11 +00:00
Fix boxsets added
This commit is contained in:
parent
c02bea8761
commit
70fba1a2c3
2 changed files with 2 additions and 4 deletions
|
@ -630,9 +630,7 @@ class LibrarySync(threading.Thread):
|
|||
pdialog.update(heading=lang(29999), message=lang(33018))
|
||||
|
||||
boxsets = self.emby.getBoxset(dialog=pdialog)
|
||||
total = boxsets['TotalRecordCount']
|
||||
|
||||
movies.process_all("BoxSet", "added", boxsets['Items'], total)
|
||||
movies.add_all("BoxSet", boxsets)
|
||||
log.debug("Boxsets finished.")
|
||||
|
||||
return True
|
||||
|
|
|
@ -44,7 +44,7 @@ class Movies(Items):
|
|||
}
|
||||
elif item_type == "BoxSet":
|
||||
actions = {
|
||||
'added': self.add_updateBoxset,
|
||||
'added': self.added_boxset,
|
||||
'update': self.add_updateBoxset,
|
||||
'remove': self.remove
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue