mirror of
https://github.com/jellyfin/jellyfin-kodi.git
synced 2025-05-10 11:25:07 +00:00
solve encoding issue with playurl
This commit is contained in:
parent
01a6c43ad2
commit
9b28b97be7
2 changed files with 2 additions and 2 deletions
|
@ -998,7 +998,7 @@ class WriteKodiDB():
|
|||
|
||||
playurl = PlayUtils().getPlayUrl(server, MBitem["Id"], MBitem)
|
||||
#make sure that the path always ends with a slash
|
||||
path = playurl + "/"
|
||||
path = utils.convertEncoding(playurl + "/")
|
||||
|
||||
if MBitem.get("DateCreated") != None:
|
||||
dateadded = MBitem["DateCreated"].replace("T"," ")
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue