We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e884bac commit 7e06873Copy full SHA for 7e06873
src/configs/ConfigBuilder.cpp
@@ -623,8 +623,8 @@ namespace Configs {
623
QJsonArray routeExcludeSets;
624
if (dataStore->enable_tun_routing)
625
{
626
- routeExcludeAddrs << directIPCIDRs;
627
- routeExcludeSets << directIPSets;
+ for (auto item:directIPCIDRs) routeExcludeAddrs << item;
+ for (auto item: directIPSets) routeExcludeSets << item;
628
}
629
if (routeChain->defaultOutboundID == proxyID)
630
0 commit comments