mirror of
https://github.com/jellyfin/jellyfin-kodi.git
synced 2025-06-19 06:36:12 +00:00
Fix info for direct play with password on network
This commit is contained in:
parent
986a71461b
commit
6a0b9a4934
2 changed files with 8 additions and 2 deletions
|
@ -458,7 +458,13 @@ class WriteKodiVideoDB():
|
|||
|
||||
#create toplevel path as monitored source - needed for things like actors and stuff to work (no clue why)
|
||||
if addon.getSetting('useDirectPaths')=='true':
|
||||
playurl = MBitem["Path"].replace("\\\\", "smb://").replace("\\", "/")
|
||||
smbuser = addon.getSetting('smbusername')
|
||||
smbpass = addon.getSetting('smbpassword')
|
||||
# Network share
|
||||
if smbuser:
|
||||
playurl = MBitem["Path"].replace("\\\\", "smb://%s:%s@" % (smbuser, smbpass)).replace("\\", "/")
|
||||
else:
|
||||
playurl = MBitem["Path"].replace("\\\\", "smb://").replace("\\", "/")
|
||||
#make sure that the path always ends with a slash
|
||||
path = utils.convertEncoding(playurl + "/")
|
||||
toplevelpathstr = path.rsplit("/",2)[1]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue