Browse Source

Fix:emoji value type

develop
CareyWong 5 years ago
parent
commit
de9830403e
  1. 5
      src/views/Subconverter.vue

5
src/views/Subconverter.vue

@ -378,9 +378,6 @@ export default {
this.customSubUrl +=
"&config=" + encodeURIComponent(this.form.remoteConfig);
}
if (this.form.emoji === "false") {
this.customSubUrl += "&emoji=" + this.form.emoji;
}
if (this.form.excludeRemarks !== "") {
this.customSubUrl +=
"&exclude=" + encodeURIComponent(this.form.excludeRemarks);
@ -391,6 +388,8 @@ export default {
}
this.customSubUrl +=
"&emoji=" +
this.form.emoji.toString() +
"&list=" +
this.form.nodeList.toString() +
"&udp=" +

Loading…
Cancel
Save