Fix compare issue

This commit is contained in:
angelblue05 2016-12-05 18:20:02 -06:00
parent d5b69677ee
commit 8b3c05cc6b

View file

@ -183,7 +183,7 @@ class Items(object):
self.process_all(item_type, "update", emby_items, total, view) self.process_all(item_type, "update", emby_items, total, view)
# Process deletes # Process deletes
if compare_to: if compare_to:
self.remove_all(item_type, compare_to.items()) self.remove_all(item_type, compare_to.keys())
return True return True