mirror of
https://github.com/2dust/v2rayN.git
synced 2025-10-14 12:29:13 +00:00
ShowClashUI
This commit is contained in:
parent
e156aaae34
commit
85b6e5ba50
1 changed files with 3 additions and 1 deletions
|
@ -2,6 +2,7 @@ using System.Diagnostics;
|
||||||
using System.Text;
|
using System.Text;
|
||||||
using ServiceLib.Enums;
|
using ServiceLib.Enums;
|
||||||
using ServiceLib.Models;
|
using ServiceLib.Models;
|
||||||
|
using static SQLite.SQLite3;
|
||||||
|
|
||||||
namespace ServiceLib.Handler;
|
namespace ServiceLib.Handler;
|
||||||
|
|
||||||
|
@ -265,7 +266,8 @@ public class CoreHandler
|
||||||
}
|
}
|
||||||
|
|
||||||
_process = proc;
|
_process = proc;
|
||||||
_config.RunningCoreType = AppHandler.Instance.GetCoreType(context.Node, context.Node.ConfigType);
|
var (_, coreType, preCoreType) = AppHandler.Instance.GetCoreAndPreType(context.Node);
|
||||||
|
_config.RunningCoreType = (ECoreType)(preCoreType != null ? preCoreType : coreType);
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue