From d9dc2d7cf53a17d446d49fd7c9bcadb869aca5ae Mon Sep 17 00:00:00 2001 From: DHR60 <192860629+DHR60@users.noreply.github.com> Date: Fri, 17 Jul 2026 01:11:28 +0000 Subject: [PATCH] Fix (#9776) --- v2rayN/ServiceLib/ViewModels/OptionSettingViewModel.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/v2rayN/ServiceLib/ViewModels/OptionSettingViewModel.cs b/v2rayN/ServiceLib/ViewModels/OptionSettingViewModel.cs index 3b47d290..63413b5f 100644 --- a/v2rayN/ServiceLib/ViewModels/OptionSettingViewModel.cs +++ b/v2rayN/ServiceLib/ViewModels/OptionSettingViewModel.cs @@ -150,6 +150,7 @@ public class OptionSettingViewModel : MyReactiveObject, ICloseable SecondLocalPortEnabled = inbound.SecondLocalPortEnabled; UdpEnabled = inbound.UdpEnabled; SniffingEnabled = inbound.SniffingEnabled; + DestOverride = inbound.DestOverride ?? []; RouteOnly = inbound.RouteOnly; AllowLANConn = inbound.AllowLANConn; NewPort4LAN = inbound.NewPort4LAN;