mirror of
https://github.com/jellyfin/jellyfin-kodi.git
synced 2024-11-10 12:16:12 +00:00
Fix grouped view
This commit is contained in:
parent
54ee51232f
commit
b11e9c2902
1 changed files with 1 additions and 1 deletions
|
@ -360,7 +360,7 @@ class LibrarySync(threading.Thread):
|
||||||
# This is only reserved for the detection of grouped views
|
# This is only reserved for the detection of grouped views
|
||||||
if (grouped_view['Type'] == "UserView" and
|
if (grouped_view['Type'] == "UserView" and
|
||||||
grouped_view.get('CollectionType') == mediatype and
|
grouped_view.get('CollectionType') == mediatype and
|
||||||
grouped_view['Id'] not in grouped_view['Path']):
|
grouped_view['Id'] not in grouped_view.get('Path', "")):
|
||||||
# Take the name of the userview
|
# Take the name of the userview
|
||||||
foldername = grouped_view['Name']
|
foldername = grouped_view['Name']
|
||||||
break
|
break
|
||||||
|
|
Loading…
Reference in a new issue