mirror of
https://github.com/jellyfin/jellyfin-kodi.git
synced 2024-11-10 04:06:11 +00:00
dont do the exists check when useDirectPaths is true
This commit is contained in:
parent
bac219c3f1
commit
f5e80ac448
1 changed files with 1 additions and 1 deletions
|
@ -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:
|
||||
|
|
Loading…
Reference in a new issue