1
0
mirror of https://github.com/nitezs/sub2clash.git synced 2024-12-23 14:34:41 -05:00
This commit is contained in:
Nite07 2023-09-23 01:11:58 +08:00
parent 429788a19f
commit c1e9099156

View File

@ -95,12 +95,15 @@ func BuildSub(clashType model.ClashType, query validator.SubValidator, template
}
// 去重
proxies := make(map[string]*model.Proxy)
newProxies := make([]model.Proxy, 0, len(proxyList))
for i := range proxyList {
key := proxyList[i].Server + ":" + strconv.Itoa(proxyList[i].Port) + ":" + proxyList[i].Type
if _, exist := proxies[key]; exist {
proxyList = append(proxyList[:i], proxyList[i+1:]...)
if _, exist := proxies[key]; !exist {
proxies[key] = &proxyList[i]
newProxies = append(newProxies, proxyList[i])
}
}
proxyList = newProxies
// 重名检测
names := make(map[string]bool)
for i := range proxyList {