Compare commits

...

2 Commits

Author SHA1 Message Date
2dust
11691d0128 up 7.13.1 2025-07-14 16:32:48 +08:00
2dust
26fe9c63a3 Bug fix
https://github.com/2dust/v2rayN/issues/7537
2025-07-14 16:32:10 +08:00
3 changed files with 3 additions and 3 deletions

View File

@@ -1,7 +1,7 @@
<Project>
<PropertyGroup>
<Version>7.13.0</Version>
<Version>7.13.1</Version>
</PropertyGroup>
<PropertyGroup>

View File

@@ -1369,7 +1369,7 @@ public class CoreConfigSingboxService
private async Task<string?> GenRoutingUserRuleOutbound(string outboundTag, SingboxConfig singboxConfig)
{
if (outboundTag is Global.ProxyTag or Global.ProxyTag or Global.BlockTag)
if (outboundTag is Global.ProxyTag or Global.DirectTag or Global.BlockTag)
{
return outboundTag;
}

View File

@@ -631,7 +631,7 @@ public class CoreConfigV2rayService
private async Task<string?> GenRoutingUserRuleOutbound(string outboundTag, V2rayConfig v2rayConfig)
{
if (outboundTag is Global.ProxyTag or Global.ProxyTag or Global.BlockTag)
if (outboundTag is Global.ProxyTag or Global.DirectTag or Global.BlockTag)
{
return outboundTag;
}