fix(core): 🩹 修正 BGP 重命名映射规则

更新 sntp-rename.js 中的 BGP 匹配项,将 "cn2|5x" 调整为 "cn2",以简化或修正节点重命名的逻辑。
This commit is contained in:
Orion
2026-05-08 16:46:47 +08:00
parent 6fee1a61c8
commit 5a60c68586

View File

@@ -14,7 +14,7 @@ function operator(proxies) {
"S2": "广电", "S2": "广电",
"S3": "广移", "S3": "广移",
"S4": "广联", "S4": "广联",
"BGP": "cn2|5x", "BGP": "cn2",
"Anytls": "直连" // 日后如果要加 IEPL只需在这里写 "IEPL": "专线" "Anytls": "直连" // 日后如果要加 IEPL只需在这里写 "IEPL": "专线"
}; };
// ============================================== // ==============================================
@@ -86,4 +86,4 @@ function operator(proxies) {
return p; return p;
}); });
} }