From 0e3dd9a0967b7931681f29deb0ef95cc99a7991d Mon Sep 17 00:00:00 2001 From: angelblue05 Date: Tue, 7 Apr 2015 20:09:17 -0500 Subject: [PATCH] Fix for multi-user It was always writing to master profile. --- resources/lib/Utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/lib/Utils.py b/resources/lib/Utils.py index 669d5a5f..da3a07ad 100644 --- a/resources/lib/Utils.py +++ b/resources/lib/Utils.py @@ -65,7 +65,7 @@ def getKodiDBPath(): #helix dbVersion = "90" - dbPath = xbmc.translatePath("special://userdata/Database/MyVideos" + dbVersion + ".db") + dbPath = xbmc.translatePath("special://profile/Database/MyVideos" + dbVersion + ".db") return dbPath