Fix path encoding for patch

Hopefully this works...
This commit is contained in:
angelblue05 2018-09-21 04:03:53 -05:00
parent 5361fed96c
commit d07d1fcc89

View file

@ -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()