mirror of
https://github.com/jellyfin/jellyfin-kodi.git
synced 2024-11-10 04:06:11 +00:00
Fix path encoding for patch
Hopefully this works...
This commit is contained in:
parent
5361fed96c
commit
d07d1fcc89
1 changed files with 1 additions and 1 deletions
|
@ -306,7 +306,7 @@ def get_objects(src, filename):
|
|||
'''
|
||||
temp = xbmc.translatePath('special://temp/emby').decode('utf-8')
|
||||
restart = not xbmcvfs.exists(os.path.join(temp, "objects") + '/')
|
||||
path = os.path.join(temp, filename)
|
||||
path = os.path.join(temp, filename).decode('utf-8')
|
||||
|
||||
if not xbmcvfs.exists(path):
|
||||
delete_folder()
|
||||
|
|
Loading…
Reference in a new issue