mirror of
https://github.com/jellyfin/jellyfin-kodi.git
synced 2024-11-10 04:06:11 +00:00
Fix compare sync
This commit is contained in:
parent
8730d61f9b
commit
ce9015c0a1
1 changed files with 4 additions and 4 deletions
|
@ -266,7 +266,7 @@ class FullSync(object):
|
|||
current = obj.item_ids
|
||||
|
||||
for x in items:
|
||||
if x[0] not in current and current[1] == 'Movie':
|
||||
if x[0] not in current and x[1] == 'Movie':
|
||||
obj.remove(x[0])
|
||||
|
||||
@progress()
|
||||
|
@ -314,7 +314,7 @@ class FullSync(object):
|
|||
current = obj.item_ids
|
||||
|
||||
for x in items:
|
||||
if x[0] not in current and current[1] == 'Series':
|
||||
if x[0] not in current and x[1] == 'Series':
|
||||
obj.remove(x[0])
|
||||
|
||||
@progress()
|
||||
|
@ -352,7 +352,7 @@ class FullSync(object):
|
|||
current = obj.item_ids
|
||||
|
||||
for x in items:
|
||||
if x[0] not in current and current[1] == 'MusicVideo':
|
||||
if x[0] not in current and x[1] == 'MusicVideo':
|
||||
obj.remove(x[0])
|
||||
|
||||
@progress()
|
||||
|
@ -412,7 +412,7 @@ class FullSync(object):
|
|||
current = obj.item_ids
|
||||
|
||||
for x in items:
|
||||
if x[0] not in current and current[1] == 'MusicArtist':
|
||||
if x[0] not in current and x[1] == 'MusicArtist':
|
||||
obj.remove(x[0])
|
||||
|
||||
@progress(_(33018))
|
||||
|
|
Loading…
Reference in a new issue