From f5e80ac448ef4aeefbbff5907ece7336b7b17876 Mon Sep 17 00:00:00 2001 From: shaun Date: Sat, 6 Jun 2015 11:55:11 +1000 Subject: [PATCH] dont do the exists check when useDirectPaths is true --- resources/lib/WriteKodiVideoDB.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/lib/WriteKodiVideoDB.py b/resources/lib/WriteKodiVideoDB.py index a5dbad8d..442c082e 100644 --- a/resources/lib/WriteKodiVideoDB.py +++ b/resources/lib/WriteKodiVideoDB.py @@ -616,7 +616,7 @@ class WriteKodiVideoDB(): #### ADD OR UPDATE THE FILE AND PATH ########### #### NOTE THAT LASTPLAYED AND PLAYCOUNT ARE STORED AT THE FILE ENTRY if addon.getSetting('useDirectPaths')=='true': - if PlayUtils().isDirectPlay(MBitem): + if True: #PlayUtils().isDirectPlay(MBitem): # dont do the exists check playurl = PlayUtils().directPlay(MBitem) #use the direct file path if "\\" in playurl: