Skip to content

Commit

Permalink
Keep style unified
Browse files Browse the repository at this point in the history
  • Loading branch information
szkzn authored Jun 26, 2024
1 parent 4af935f commit e538e52
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions src/views/Subconverter.vue
Original file line number Diff line number Diff line change
Expand Up @@ -409,16 +409,20 @@ export default {
if (this.advanced === "2") {
if (this.form.remoteConfig) {
this.customSubUrl += "&config=" + encodeURIComponent(this.form.remoteConfig);
this.customSubUrl +=
"&config=" + encodeURIComponent(this.form.remoteConfig);
}
if (this.form.excludeRemarks) {
this.customSubUrl += "&exclude=" + encodeURIComponent(this.form.excludeRemarks);
this.customSubUrl +=
"&exclude=" + encodeURIComponent(this.form.excludeRemarks);
}
if (this.form.includeRemarks) {
this.customSubUrl += "&include=" + encodeURIComponent(this.form.includeRemarks);
this.customSubUrl +=
"&include=" + encodeURIComponent(this.form.includeRemarks);
}
if (this.form.filename) {
this.customSubUrl += "&filename=" + encodeURIComponent(this.form.filename);
this.customSubUrl +=
"&filename=" + encodeURIComponent(this.form.filename);
}
if (this.form.appendType) {
this.customSubUrl +=
Expand Down

0 comments on commit e538e52

Please sign in to comment.