mirror of
https://github.com/jellyfin/jellyfin-kodi.git
synced 2024-11-10 04:06:11 +00:00
Revert offline fix
Apparently offline is being returned regardless, so something else must be causing the kodi database being wiped. Probably the server is sending remove event?
This commit is contained in:
parent
ea3d2a925f
commit
9cd28f94ab
1 changed files with 0 additions and 5 deletions
|
@ -172,7 +172,6 @@ class Read_EmbyServer():
|
|||
'ParentId': parentid,
|
||||
'ArtistIds': artist_id,
|
||||
'IncludeItemTypes': itemtype,
|
||||
'IncludeLocationType': "Offline,FileSystem",
|
||||
'CollapseBoxSetItems': False,
|
||||
'IsVirtualUnaired': False,
|
||||
'IsMissing': False,
|
||||
|
@ -201,7 +200,6 @@ class Read_EmbyServer():
|
|||
'ArtistIds': artist_id,
|
||||
'IncludeItemTypes': itemtype,
|
||||
'CollapseBoxSetItems': False,
|
||||
'IncludeLocationType': "Offline,FileSystem",
|
||||
'IsVirtualUnaired': False,
|
||||
'IsMissing': False,
|
||||
'Recursive': True,
|
||||
|
@ -341,7 +339,6 @@ class Read_EmbyServer():
|
|||
|
||||
'ParentId': parentid,
|
||||
'CollapseBoxSetItems': False,
|
||||
'IncludeLocationType': "Offline,FileSystem",
|
||||
'IsVirtualUnaired': False,
|
||||
'IsMissing': False,
|
||||
'Recursive': True,
|
||||
|
@ -427,7 +424,6 @@ class Read_EmbyServer():
|
|||
params = {
|
||||
|
||||
'ParentId': parent_id,
|
||||
'IncludeLocationType': "Offline,FileSystem",
|
||||
'Recursive': True,
|
||||
'Limit': 1
|
||||
}
|
||||
|
@ -450,7 +446,6 @@ class Read_EmbyServer():
|
|||
'ParentId': parent_id,
|
||||
'Recursive': True,
|
||||
'IsVirtualUnaired': False,
|
||||
'IncludeLocationType': "Offline,FileSystem",
|
||||
'StartIndex': index,
|
||||
'Limit': jump,
|
||||
'SortBy': "SortName",
|
||||
|
|
Loading…
Reference in a new issue