mirror of
https://github.com/jellyfin/jellyfin-kodi.git
synced 2024-11-10 12:16:12 +00:00
Fix for multi-user
It was always writing to master profile.
This commit is contained in:
parent
a464924f6f
commit
0e3dd9a096
1 changed files with 1 additions and 1 deletions
|
@ -65,7 +65,7 @@ def getKodiDBPath():
|
||||||
#helix
|
#helix
|
||||||
dbVersion = "90"
|
dbVersion = "90"
|
||||||
|
|
||||||
dbPath = xbmc.translatePath("special://userdata/Database/MyVideos" + dbVersion + ".db")
|
dbPath = xbmc.translatePath("special://profile/Database/MyVideos" + dbVersion + ".db")
|
||||||
|
|
||||||
return dbPath
|
return dbPath
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue