changes to use native kodi db for inserts

This commit is contained in:
Marcel van der Veldt 2015-04-01 21:07:29 +02:00
parent 8ec2d7d33b
commit 5f8e5105bb
6 changed files with 520 additions and 482 deletions

View file

@ -76,8 +76,9 @@ class PlayUtils():
# Works out if we are direct playing or not
def isDirectPlay(self, result):
return False
if (self.fileExists(result) or (result.get("LocationType") == "FileSystem" and self.isNetworkQualitySufficient(result) == True and self.isLocalPath(result) == False)):
return True
return False
else:
return False