From f8ebafcbb46888211bbbbcb71b82e34556e39664 Mon Sep 17 00:00:00 2001 From: Zef Hemel Date: Tue, 25 Feb 2025 20:05:38 +0100 Subject: [PATCH] Removed legacy fallback code in index.html as mentioned in #1262 --- web/index.html | 9 --------- 1 file changed, 9 deletions(-) diff --git a/web/index.html b/web/index.html index 5a840df3..a61c9da4 100644 --- a/web/index.html +++ b/web/index.html @@ -56,15 +56,6 @@ enableSpaceScript: "{{ENABLE_SPACE_SCRIPT}}" === "true", readOnly: "{{READ_ONLY}}" === "true", }; - // But in case these variables aren't replaced by the server, fall back sync only mode - if (window.silverBulletConfig.spaceFolderPath.includes("{{")) { - window.silverBulletConfig = { - spaceFolderPath: "", - syncOnly: true, - readOnly: false, - enableSpaceScripts: false, - }; - }