aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--.github/ISSUE_TEMPLATE.md2
-rw-r--r--src/components/settings/services/EditServiceForm.js2
-rw-r--r--src/models/Service.js2
3 files changed, 3 insertions, 3 deletions
diff --git a/.github/ISSUE_TEMPLATE.md b/.github/ISSUE_TEMPLATE.md
index c11a2994f..5317684cf 100644
--- a/.github/ISSUE_TEMPLATE.md
+++ b/.github/ISSUE_TEMPLATE.md
@@ -1,6 +1,6 @@
1<!--- Provide a general summary of the issue in the Title above --> 1<!--- Provide a general summary of the issue in the Title above -->
2 2
3<!-- This repository is only for the Franz client. Please use this form ( https://adlk.typeform.com/to/Bj7vGq ) for service requests or check out the guide ( https://github.com/meetfranz/plugins ) to create your own service integration. --> 3<!-- This repository is only for the Franz client. Please use this form ( https://goo.gl/forms/zbwlx3VFvAo2oink2q ) for service requests or check out the guide ( https://github.com/meetfranz/plugins ) to create your own service integration. -->
4 4
5<!--- If you want to propose a feature, use this template: https://raw.githubusercontent.com/meetfranz/franz/master/.github/FEATURE_PROPOSAL_TEMPLATE.md --> 5<!--- If you want to propose a feature, use this template: https://raw.githubusercontent.com/meetfranz/franz/master/.github/FEATURE_PROPOSAL_TEMPLATE.md -->
6 6
diff --git a/src/components/settings/services/EditServiceForm.js b/src/components/settings/services/EditServiceForm.js
index 753781507..36cefe87c 100644
--- a/src/components/settings/services/EditServiceForm.js
+++ b/src/components/settings/services/EditServiceForm.js
@@ -114,7 +114,7 @@ export default class EditServiceForm extends Component {
114 if (recipe.validateUrl && values.customUrl) { 114 if (recipe.validateUrl && values.customUrl) {
115 this.setState({ isValidatingCustomUrl: true }); 115 this.setState({ isValidatingCustomUrl: true });
116 try { 116 try {
117 values.customUrl = normalizeUrl(values.customUrl); 117 values.customUrl = normalizeUrl(values.customUrl, { stripWWW: false });
118 isValid = await recipe.validateUrl(values.customUrl); 118 isValid = await recipe.validateUrl(values.customUrl);
119 } catch (err) { 119 } catch (err) {
120 console.warn('ValidateURL', err); 120 console.warn('ValidateURL', err);
diff --git a/src/models/Service.js b/src/models/Service.js
index d0985969b..958e4b11e 100644
--- a/src/models/Service.js
+++ b/src/models/Service.js
@@ -73,7 +73,7 @@ export default class Service {
73 if (this.recipe.hasCustomUrl && this.customUrl) { 73 if (this.recipe.hasCustomUrl && this.customUrl) {
74 let url; 74 let url;
75 try { 75 try {
76 url = normalizeUrl(this.customUrl); 76 url = normalizeUrl(this.customUrl, { stripWWW: false });
77 } catch (err) { 77 } catch (err) {
78 console.error(`Service (${this.recipe.name}): '${this.customUrl}' is not a valid Url.`); 78 console.error(`Service (${this.recipe.name}): '${this.customUrl}' is not a valid Url.`);
79 } 79 }