From eb0d1d21bba681907a263ea9c9c38ab5acbe58f9 Mon Sep 17 00:00:00 2001 From: croneter Date: Sun, 25 Feb 2018 13:25:31 +0100 Subject: [PATCH] Revert "Don't list collections/sets also as Kodi tags" This reverts commit 3f1da3c1eab00be2aa03e7ffb19b7c426868a33c. --- resources/lib/itemtypes.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/resources/lib/itemtypes.py b/resources/lib/itemtypes.py index f9724c57..5f7cac79 100644 --- a/resources/lib/itemtypes.py +++ b/resources/lib/itemtypes.py @@ -447,6 +447,7 @@ class Movies(Items): self.kodi_db.addStudios(movieid, studios, "movie") # Process tags: view, Plex collection tags tags = [viewtag] + tags.extend(collections) if userdata['Favorite']: tags.append("Favorite movies") self.kodi_db.addTags(movieid, tags, "movie") @@ -735,6 +736,7 @@ class TVShows(Items): self.kodi_db.addStudios(showid, studios, "tvshow") # Process tags: view, PMS collection tags tags = [viewtag] + tags.extend(collections) self.kodi_db.addTags(showid, tags, "tvshow") @catch_exceptions(warnuser=True)