fix: v2ray will proxy multicast address causing loop

This commit is contained in:
ChsBuffer
2020-10-25 21:35:07 +08:00
parent 7b0f0f35cc
commit 8e223faa71

View File

@@ -224,15 +224,15 @@ namespace Netch.Servers.VMess.Utils
}
}
v2rayConfig.outbounds = new List<Outbounds>
{
outbound,
v2rayConfig.outbounds = new List<Outbounds> {outbound};
if (mode.Type <= 2)
return;
v2rayConfig.outbounds.Add(
new Outbounds
{
tag = "direct",
protocol = "freedom"
}
};
});
}
catch
{