mirror of
https://github.com/jellyfin/jellyfin-kodi.git
synced 2024-11-10 04:06:11 +00:00
Fix to follow emby views
To follow "my views" presentation
This commit is contained in:
parent
fe5ae9386a
commit
5d74dcedc4
1 changed files with 17 additions and 17 deletions
|
@ -281,7 +281,7 @@ class ReadEmbyDB():
|
|||
# Build a list of the user views
|
||||
collections = []
|
||||
|
||||
url = "{server}/mediabrowser/Users/{UserId}/Items?Sortby=SortName&format=json"
|
||||
url = "{server}/mediabrowser/Users/{UserId}/Views?format=json" #Items?Sortby=SortName&format=json"
|
||||
jsondata = self.doUtils.downloadUrl(url)
|
||||
|
||||
try:
|
||||
|
@ -289,12 +289,12 @@ class ReadEmbyDB():
|
|||
except: pass
|
||||
else:
|
||||
for item in result:
|
||||
if item['RecursiveItemCount']:
|
||||
|
||||
name = item['Name']
|
||||
itemtype = item.get('CollectionType')
|
||||
content = itemtype
|
||||
|
||||
if itemtype is None and type in ("movies", "tvshows"):
|
||||
if itemtype is None and type in {"movies", "tvshows"}:
|
||||
# Mixed content or rich presentation is disabled
|
||||
itemtype = type
|
||||
content = "mixed"
|
||||
|
|
Loading…
Reference in a new issue