mirror of https://github.com/2dust/v2rayN
add arm64 download path for core
parent
fca062f75a
commit
181dfd2f51
Binary file not shown.
|
@ -466,6 +466,12 @@ namespace v2rayN.Handler
|
|||
{
|
||||
url = string.Format(coreInfo.coreDownloadUrl32, version);
|
||||
}
|
||||
|
||||
if (RuntimeInformation.ProcessArchitecture == Architecture.Arm64)
|
||||
{
|
||||
url = string.Format(coreInfo.coreDownloadUrlArm64, version);
|
||||
}
|
||||
|
||||
break;
|
||||
}
|
||||
case ECoreType.v2rayN:
|
||||
|
|
Loading…
Reference in New Issue