Browse Source

Feat:默认不过滤非法节点

develop
CareyWong 5 years ago
parent
commit
2e1619d9de
  1. 11
      src/views/Subconverter.vue

11
src/views/Subconverter.vue

@ -82,6 +82,9 @@
<el-row> <el-row>
<el-checkbox v-model="form.scv" label="跳过证书验证"></el-checkbox> <el-checkbox v-model="form.scv" label="跳过证书验证"></el-checkbox>
</el-row> </el-row>
<el-row>
<el-checkbox v-model="form.fdn" label="过滤非法节点"></el-checkbox>
</el-row>
<el-button slot="reference">更多选项</el-button> <el-button slot="reference">更多选项</el-button>
</el-popover> </el-popover>
</el-row> </el-row>
@ -271,7 +274,7 @@ export default {
label: "Special", label: "Special",
options: [ options: [
{ {
label: "NeteaseUnblock", label: "NeteaseUnblock(仅规则,No-Urltest)",
value: value:
"https://raw.githubusercontent.com/CareyWang/sub-web/master/docs/special/netease.ini" "https://raw.githubusercontent.com/CareyWang/sub-web/master/docs/special/netease.ini"
} }
@ -293,7 +296,7 @@ export default {
udp: false, udp: false,
tfo: false, tfo: false,
scv: false, scv: false,
fdn: true fdn: false,
}, },
loading: false, loading: false,
@ -395,7 +398,9 @@ export default {
"&tfo=" + "&tfo=" +
this.form.tfo.toString() + this.form.tfo.toString() +
"&scv=" + "&scv=" +
this.form.scv.toString(); this.form.scv.toString() +
"&fdn=" +
this.form.fdn.toString();
} }
this.$copyText(this.customSubUrl); this.$copyText(this.customSubUrl);

Loading…
Cancel
Save