From acde5b83846b3fe8a71b051113a6481ca33d0e8b Mon Sep 17 00:00:00 2001 From: 2dust <31833384+2dust@users.noreply.github.com> Date: Fri, 5 Jul 2024 11:18:14 +0800 Subject: [PATCH] Bug fix --- v2rayN/v2rayN/Sample/custom_routing_black | 5 +++++ v2rayN/v2rayN/Sample/custom_routing_global | 5 +++++ v2rayN/v2rayN/Sample/custom_routing_white | 5 +++++ v2rayN/v2rayN/ViewModels/ClashProxiesViewModel.cs | 1 + 4 files changed, 16 insertions(+) diff --git a/v2rayN/v2rayN/Sample/custom_routing_black b/v2rayN/v2rayN/Sample/custom_routing_black index adae7612..05ff79d5 100644 --- a/v2rayN/v2rayN/Sample/custom_routing_black +++ b/v2rayN/v2rayN/Sample/custom_routing_black @@ -5,6 +5,11 @@ "bittorrent" ] }, + { + "outboundTag": "block", + "port": "443", + "network": "udp" + }, { "outboundTag": "block", "domain": [ diff --git a/v2rayN/v2rayN/Sample/custom_routing_global b/v2rayN/v2rayN/Sample/custom_routing_global index 169d8156..55c341a4 100644 --- a/v2rayN/v2rayN/Sample/custom_routing_global +++ b/v2rayN/v2rayN/Sample/custom_routing_global @@ -1,4 +1,9 @@ [ + { + "outboundTag": "block", + "port": "443", + "network": "udp" + }, { "port": "0-65535", "outboundTag": "proxy" diff --git a/v2rayN/v2rayN/Sample/custom_routing_white b/v2rayN/v2rayN/Sample/custom_routing_white index 7d34872f..1dfcea15 100644 --- a/v2rayN/v2rayN/Sample/custom_routing_white +++ b/v2rayN/v2rayN/Sample/custom_routing_white @@ -6,6 +6,11 @@ "domain:example-example2.com" ] }, + { + "outboundTag": "block", + "port": "443", + "network": "udp" + }, { "outboundTag": "block", "domain": [ diff --git a/v2rayN/v2rayN/ViewModels/ClashProxiesViewModel.cs b/v2rayN/v2rayN/ViewModels/ClashProxiesViewModel.cs index 255dc1bb..099063b6 100644 --- a/v2rayN/v2rayN/ViewModels/ClashProxiesViewModel.cs +++ b/v2rayN/v2rayN/ViewModels/ClashProxiesViewModel.cs @@ -147,6 +147,7 @@ namespace v2rayN.ViewModels public void ProxiesReload() { GetClashProxies(true); + ProxiesDelayTest(); } public void ProxiesClear()