From 83f446eaaecce42e00defbe53bba906015f93f7d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Stephan=20Maih=C3=B6fer?= Date: Mon, 10 Jun 2024 17:47:14 +0200 Subject: [PATCH] fix index.html location --- src_client/standalone.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src_client/standalone.js b/src_client/standalone.js index 91b5a75..a6c253b 100644 --- a/src_client/standalone.js +++ b/src_client/standalone.js @@ -26,7 +26,7 @@ class CablesStandalone init() { this.editorIframe = document.getElementById("editorIframe"); - let src = this._settings.uiDistPath + "/index.html" + window.location.search; + let src = this._path.join(this._settings.uiDistPath, "index.html") + window.location.search; if (window.location.hash) { src += window.location.hash;