mirror of
https://github.com/jellyfin/jellyfin-kodi.git
synced 2024-11-10 04:06:11 +00:00
Adjust path verification
This commit is contained in:
parent
e46c2a2c62
commit
8fd8d90681
1 changed files with 1 additions and 1 deletions
|
@ -151,7 +151,7 @@ class PlayUtils():
|
|||
|
||||
path = self.get_direct_path(source)
|
||||
|
||||
if xbmcvfs.exists(path) or ":" not in path:
|
||||
if xbmcvfs.exists(path): # or ":" not in path:
|
||||
log.info("Path exists or assumed linux or web.")
|
||||
|
||||
self.method = "DirectPlay"
|
||||
|
|
Loading…
Reference in a new issue