From a091b64688cdcbfa983b1665497f1ea1a638e311 Mon Sep 17 00:00:00 2001 From: CareyWong Date: Thu, 30 Jul 2020 15:23:06 +0800 Subject: [PATCH] =?UTF-8?q?Fix=EF=BC=9Amissing=20param?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/Subconverter.vue | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/views/Subconverter.vue b/src/views/Subconverter.vue index ba0aed5..fc362c8 100644 --- a/src/views/Subconverter.vue +++ b/src/views/Subconverter.vue @@ -501,6 +501,10 @@ export default { } if (this.form.clientType === "clash") { + if (this.form.tpl.clash.doh === true) { + this.customSubUrl += "&clash.doh=true"; + } + this.customSubUrl += "&new_name=" + this.form.new_name.toString(); } }