aboutsummaryrefslogtreecommitdiffstats
path: root/src/models/Service.js
diff options
context:
space:
mode:
authorLibravatar Amine Mouafik <amine@mouafik.fr>2020-02-11 00:39:07 +0100
committerLibravatar Amine Mouafik <amine@mouafik.fr>2020-02-11 00:39:07 +0100
commita8781e825378cd9583dfae8750c7a5d1a4fdbe1c (patch)
treea3dfa5c832ca79e44588f3e860256f4f003c5532 /src/models/Service.js
parentUpgrade normalize-url to latest major (diff)
downloadferdium-app-a8781e825378cd9583dfae8750c7a5d1a4fdbe1c.tar.gz
ferdium-app-a8781e825378cd9583dfae8750c7a5d1a4fdbe1c.tar.zst
ferdium-app-a8781e825378cd9583dfae8750c7a5d1a4fdbe1c.zip
#276 Fix custom URL validation failing due to URL normalization
Diffstat (limited to 'src/models/Service.js')
-rw-r--r--src/models/Service.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/models/Service.js b/src/models/Service.js
index 10b54602f..12a2d4af9 100644
--- a/src/models/Service.js
+++ b/src/models/Service.js
@@ -1,6 +1,6 @@
1import { computed, observable, autorun } from 'mobx'; 1import { autorun, computed, observable } from 'mobx';
2import path from 'path';
3import normalizeUrl from 'normalize-url'; 2import normalizeUrl from 'normalize-url';
3import path from 'path';
4 4
5const debug = require('debug')('Ferdi:Service'); 5const debug = require('debug')('Ferdi:Service');
6 6
@@ -146,7 +146,7 @@ export default class Service {
146 if (this.recipe.hasCustomUrl && this.customUrl) { 146 if (this.recipe.hasCustomUrl && this.customUrl) {
147 let url; 147 let url;
148 try { 148 try {
149 url = normalizeUrl(this.customUrl, { stripWWW: false }); 149 url = normalizeUrl(this.customUrl, { stripWWW: false, removeTrailingSlash: false });
150 } catch (err) { 150 } catch (err) {
151 console.error(`Service (${this.recipe.name}): '${this.customUrl}' is not a valid Url.`); 151 console.error(`Service (${this.recipe.name}): '${this.customUrl}' is not a valid Url.`);
152 } 152 }