From 043e6202312fcd6eb2121811e4495d8e5eff561a Mon Sep 17 00:00:00 2001 From: Elian Doran Date: Fri, 10 Apr 2026 21:09:29 +0300 Subject: [PATCH] fix(setup): trailing slash affects sync (closes #8045) --- apps/client/src/setup.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/client/src/setup.ts b/apps/client/src/setup.ts index 30232b85a3..67ad3e835d 100644 --- a/apps/client/src/setup.ts +++ b/apps/client/src/setup.ts @@ -99,7 +99,7 @@ class SetupController { } private async finish() { - const syncServerHost = this.syncServerHostInput.value.trim(); + const syncServerHost = this.syncServerHostInput.value.trim().replace(/\/+$/, ""); const syncProxy = this.syncProxyInput.value.trim(); const password = this.passwordInput.value;