From 06ddedbc4cd9620a7e8c2302fe5a63d33cb91b56 Mon Sep 17 00:00:00 2001 From: 2dust <31833384+2dust@users.noreply.github.com> Date: Fri, 25 Oct 2024 09:27:11 +0800 Subject: [PATCH] The core folder is all lowercase letters --- v2rayN/ServiceLib/Common/Utils.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/v2rayN/ServiceLib/Common/Utils.cs b/v2rayN/ServiceLib/Common/Utils.cs index cf242963..cf577181 100644 --- a/v2rayN/ServiceLib/Common/Utils.cs +++ b/v2rayN/ServiceLib/Common/Utils.cs @@ -720,7 +720,7 @@ namespace ServiceLib.Common } if (coreType != null) { - tempPath = Path.Combine(tempPath, coreType.ToString()); + tempPath = Path.Combine(tempPath, coreType.ToLower().ToString()); if (!Directory.Exists(tempPath)) { Directory.CreateDirectory(tempPath);