From 6d35abe7ca050b941a04c340887743fadb333b3d Mon Sep 17 00:00:00 2001 From: DHR60 Date: Mon, 9 Feb 2026 09:55:58 +0800 Subject: [PATCH] Fix --- v2rayN/ServiceLib/Handler/CoreConfigHandler.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/v2rayN/ServiceLib/Handler/CoreConfigHandler.cs b/v2rayN/ServiceLib/Handler/CoreConfigHandler.cs index 7d613456..6143a27a 100644 --- a/v2rayN/ServiceLib/Handler/CoreConfigHandler.cs +++ b/v2rayN/ServiceLib/Handler/CoreConfigHandler.cs @@ -170,7 +170,8 @@ public static class CoreConfigHandler var ruleOutboundNode = await AppManager.Instance.GetProfileItemViaRemarks(ruleItem.OutboundTag); if (ruleOutboundNode != null) { - await FillNodeContext(context, ruleOutboundNode); + var ruleOutboundNodeAct = await FillNodeContext(context, ruleOutboundNode, false); + context.AllProxiesMap[$"remark:{ruleItem.OutboundTag}"] = ruleOutboundNodeAct; } } }