Explorar el Código

Keep style unified

szkzn hace 1 año
padre
commit
e538e52f6e
Se han modificado 1 ficheros con 8 adiciones y 4 borrados
  1. 8 4
      src/views/Subconverter.vue

+ 8 - 4
src/views/Subconverter.vue

@@ -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 +=