mirror of
https://github.com/zadam/trilium.git
synced 2026-05-07 11:56:10 +02:00
fix(setup): trailing slash affects sync (closes #8045)
This commit is contained in:
@@ -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;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user