feat: Clash 系输入支持 mieru; 调整 juicity 和 mieru 相关过滤逻辑

This commit is contained in:
xream
2024-12-24 15:08:28 +08:00
parent 38eccca8b4
commit 6d78eb7356
4 changed files with 7 additions and 1 deletions

View File

@@ -8,6 +8,8 @@ export default function ClashMeta_Producer() {
if (opts['include-unsupported-proxy']) return true;
if (proxy.type === 'snell' && String(proxy.version) === '4') {
return false;
} else if (['juicity'].includes(proxy.type)) {
return false;
}
return true;
})

View File

@@ -8,6 +8,8 @@ export default function ShadowRocket_Producer() {
if (opts['include-unsupported-proxy']) return true;
if (proxy.type === 'snell' && String(proxy.version) === '4') {
return false;
} else if (['mieru'].includes(proxy.type)) {
return false;
}
return true;
})