From e5b6e893cdfa1b0bd9bc3987db015df9d7ef0eee Mon Sep 17 00:00:00 2001 From: PhilReact Date: Fri, 24 Jan 2025 21:30:55 +0200 Subject: [PATCH] GET_AT missing a slash --- src/main/resources/q-apps/q-apps.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/resources/q-apps/q-apps.js b/src/main/resources/q-apps/q-apps.js index bdaa9e0f..0e7e4805 100644 --- a/src/main/resources/q-apps/q-apps.js +++ b/src/main/resources/q-apps/q-apps.js @@ -456,7 +456,7 @@ window.addEventListener("message", async (event) => { return httpGetAsyncWithEvent(event, url); case "GET_AT": - url = "/at" + data.atAddress; + url = "/at/" + data.atAddress; return httpGetAsyncWithEvent(event, url); case "GET_AT_DATA":