mirror of
https://github.com/jellyfin/jellyfin-kodi.git
synced 2025-06-18 22:26:14 +00:00
unicode fixes
fix for users who have redirected kodi data folders (replace open with xbmcvfs.file)
This commit is contained in:
parent
ca0906aaaf
commit
2bd1d139c1
4 changed files with 21 additions and 20 deletions
|
@ -185,7 +185,7 @@ class Artwork():
|
|||
for dir in allDirs:
|
||||
allDirs, allFiles = xbmcvfs.listdir(path+dir)
|
||||
for file in allFiles:
|
||||
xbmcvfs.delete(os.path.join(path+dir,file))
|
||||
xbmcvfs.delete(os.path.join(path+dir.decode('utf-8'),file.decode('utf-8')))
|
||||
|
||||
# remove all existing data from texture DB
|
||||
textureconnection = utils.kodiSQL('texture')
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue