From 274b49d66fcbfd4a46265637dd14c256f858f3bc Mon Sep 17 00:00:00 2001 From: lishuang Date: Sun, 20 Mar 2022 17:24:57 +0800 Subject: [PATCH] Fix the sqlite folder bug2. --- code/support/tank_config.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/support/tank_config.go b/code/support/tank_config.go index e12aa38..2524f2c 100644 --- a/code/support/tank_config.go +++ b/code/support/tank_config.go @@ -198,7 +198,7 @@ func (this *TankConfig) SqliteFolder() string { if this.sqliteFolder == "" { //use default file location. if this.item == nil || this.item.SqliteFolder == "" { - this.sqliteFolder = util.GetHomePath() + "/conf" + this.sqliteFolder = util.GetHomePath() + "/matter" } else { this.sqliteFolder = util.UniformPath(this.item.SqliteFolder) }