GET_AT missing a slash

This commit is contained in:
PhilReact 2025-01-24 21:30:55 +02:00
parent 9e45d640bc
commit e5b6e893cd

View File

@ -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":