mirror of
https://github.com/jellyfin/jellyfin-kodi.git
synced 2024-11-10 04:06:11 +00:00
Fix boxset refresh
This commit is contained in:
parent
8b9673b148
commit
24236b7637
1 changed files with 1 additions and 1 deletions
|
@ -43,7 +43,7 @@ class FullSync(object):
|
|||
if selected not in [x.replace('Mixed:', "") for x in self.sync['Whitelist']]:
|
||||
library = self.get_libraries(selected)
|
||||
|
||||
if library[1] == 'mixed':
|
||||
if library and library[1] == 'mixed':
|
||||
selected = "Mixed:%s" % selected
|
||||
|
||||
self.sync['Libraries'].append(selected)
|
||||
|
|
Loading…
Reference in a new issue