给 tuic 协议都加上 block-quic 为 off 的脚本操作示例:
async function operator(proxies = []) {
return proxies.map((p = {}) => {
if (['tuic'].includes(p.type)) {
p['block-quic'] = 'off';
}
return p
})
}- ❤️1
async function operator(proxies = []) {
return proxies.map((p = {}) => {
if (['tuic'].includes(p.type)) {
p['block-quic'] = 'off';
}
return p
})
}