From 7a22a1a60e77cdf744d563a010c2d7b7964b380c Mon Sep 17 00:00:00 2001 From: shaun Date: Fri, 3 Apr 2015 15:13:28 +1100 Subject: [PATCH] Work around until ParentId and Ids work together This is a simple work around to filter the items after we get them, hopefully we can get the API fixed to allow ParentId and Ids to work together. until then we do the filtering on the full list returned. --- resources/lib/LibrarySync.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/lib/LibrarySync.py b/resources/lib/LibrarySync.py index 9dcc3990..0ea00717 100644 --- a/resources/lib/LibrarySync.py +++ b/resources/lib/LibrarySync.py @@ -116,7 +116,7 @@ class LibrarySync(): for item in allMB3Movies: - if not item.get('IsFolder'): + if not item.get('IsFolder'): allEmbyMovieIds.append(item["Id"]) item['Tag'] = [] item['Tag'].append(view.get('title'))