mirror of
https://github.com/jellyfin/jellyfin-kodi.git
synced 2024-11-10 04:06:11 +00:00
Forgot to add filters
For collections and trailers
This commit is contained in:
parent
bfcf110d82
commit
8b2bd3e30b
1 changed files with 2 additions and 2 deletions
|
@ -233,8 +233,8 @@ class Read_EmbyServer():
|
||||||
if itemId == folder['Id']:
|
if itemId == folder['Id']:
|
||||||
itemtype = folder.get('CollectionType', "mixed")
|
itemtype = folder.get('CollectionType', "mixed")
|
||||||
|
|
||||||
if (itemtype == type or
|
if (name not in ('Collections', 'Trailers') and (itemtype == type or
|
||||||
(itemtype == "mixed" and type in ("movies", "tvshows"))):
|
(itemtype == "mixed" and type in ("movies", "tvshows")))):
|
||||||
|
|
||||||
views.append({
|
views.append({
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue