aboutsummaryrefslogtreecommitdiffstats
path: root/src/components
diff options
context:
space:
mode:
authorLibravatar niu tech <jerzyglowacki@gmail.com>2021-11-15 01:14:08 +0100
committerLibravatar GitHub <noreply@github.com>2021-11-15 05:44:08 +0530
commitf5816f5779da4a827ae6a17cd9fd387ab29dcc44 (patch)
tree536e4cce8ef67f19078f5c8221027b7a2e6025c0 /src/components
parentchore: label for number of split columns (#2229) (diff)
downloadferdium-app-f5816f5779da4a827ae6a17cd9fd387ab29dcc44.tar.gz
ferdium-app-f5816f5779da4a827ae6a17cd9fd387ab29dcc44.tar.zst
ferdium-app-f5816f5779da4a827ae6a17cd9fd387ab29dcc44.zip
fix: don't strip authentication credentials from service URL (fixes #2182) (#2228)
Diffstat (limited to 'src/components')
-rw-r--r--src/components/settings/services/EditServiceForm.js1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/components/settings/services/EditServiceForm.js b/src/components/settings/services/EditServiceForm.js
index 2c451d7bf..6b4cc721d 100644
--- a/src/components/settings/services/EditServiceForm.js
+++ b/src/components/settings/services/EditServiceForm.js
@@ -182,6 +182,7 @@ class EditServiceForm extends Component {
182 this.setState({ isValidatingCustomUrl: true }); 182 this.setState({ isValidatingCustomUrl: true });
183 try { 183 try {
184 values.customUrl = normalizeUrl(values.customUrl, { 184 values.customUrl = normalizeUrl(values.customUrl, {
185 stripAuthentication: false,
185 stripWWW: false, 186 stripWWW: false,
186 removeTrailingSlash: false, 187 removeTrailingSlash: false,
187 }); 188 });