aboutsummaryrefslogtreecommitdiffstats
path: root/src/models/Service.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/models/Service.js')
-rw-r--r--src/models/Service.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/models/Service.js b/src/models/Service.js
index 484252e7c..93061c2cf 100644
--- a/src/models/Service.js
+++ b/src/models/Service.js
@@ -60,7 +60,7 @@ export default class Service {
60 if (this.recipe.hasCustomUrl && this.customUrl) { 60 if (this.recipe.hasCustomUrl && this.customUrl) {
61 let url; 61 let url;
62 try { 62 try {
63 url = normalizeUrl(this.customUrl); 63 url = normalizeUrl(this.customUrl, { stripWWW: false });
64 } catch (err) { 64 } catch (err) {
65 console.error(`Service (${this.recipe.name}): '${this.customUrl}' is not a valid Url.`); 65 console.error(`Service (${this.recipe.name}): '${this.customUrl}' is not a valid Url.`);
66 } 66 }