From 81f0dc982d80287d4fa32a6e48516a867dc5977d Mon Sep 17 00:00:00 2001 From: JieXu Date: Wed, 15 Apr 2026 01:39:07 +0800 Subject: [PATCH] Update UpdateService.cs --- v2rayN/ServiceLib/Services/UpdateService.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/v2rayN/ServiceLib/Services/UpdateService.cs b/v2rayN/ServiceLib/Services/UpdateService.cs index f9d9a5f8..d77761ac 100644 --- a/v2rayN/ServiceLib/Services/UpdateService.cs +++ b/v2rayN/ServiceLib/Services/UpdateService.cs @@ -304,6 +304,7 @@ public class UpdateService(Config config, Func updateFunc) return RuntimeInformation.ProcessArchitecture switch { Architecture.Arm64 => coreInfo?.DownloadUrlLinuxArm64, + Architecture.RiscV64 => coreInfo?.DownloadUrlLinuxRiscV64, Architecture.X64 => coreInfo?.DownloadUrlLinux64, _ => null, };