From eee87ded29cc7e0bc6f78a3972ea901936dc03e4 Mon Sep 17 00:00:00 2001 From: 2dust <31833384+2dust@users.noreply.github.com> Date: Wed, 19 Feb 2025 10:06:47 +0800 Subject: [PATCH] Fix cache.db storage location https://github.com/2dust/v2rayN/issues/6731 --- .../ServiceLib/Services/CoreConfig/CoreConfigSingboxService.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/v2rayN/ServiceLib/Services/CoreConfig/CoreConfigSingboxService.cs b/v2rayN/ServiceLib/Services/CoreConfig/CoreConfigSingboxService.cs index cd11ecd1..1ad3de13 100644 --- a/v2rayN/ServiceLib/Services/CoreConfig/CoreConfigSingboxService.cs +++ b/v2rayN/ServiceLib/Services/CoreConfig/CoreConfigSingboxService.cs @@ -1324,7 +1324,7 @@ namespace ServiceLib.Services.CoreConfig singboxConfig.experimental.cache_file = new CacheFile4Sbox() { enabled = true, - path = Utils.GetBinConfigPath("cache.db") + path = Utils.GetBinPath("cache.db") }; }