From 9cd28f94ab681ba997198cc5929cd720991cbaaa Mon Sep 17 00:00:00 2001 From: angelblue05 Date: Thu, 10 Nov 2016 15:16:51 -0600 Subject: [PATCH] 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? --- resources/lib/read_embyserver.py | 5 ----- 1 file changed, 5 deletions(-) diff --git a/resources/lib/read_embyserver.py b/resources/lib/read_embyserver.py index 7a01afbb..cbcbac58 100644 --- a/resources/lib/read_embyserver.py +++ b/resources/lib/read_embyserver.py @@ -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",