From 1ce2dcfb2b339b58c643282e7409025ac8157455 Mon Sep 17 00:00:00 2001 From: CalDescent Date: Tue, 25 Apr 2023 08:33:33 +0100 Subject: [PATCH] Fixed bug which prevented qortal:// URLs from working properly in most cases. --- 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 2274cec0..9ae4e478 100644 --- a/src/main/resources/q-apps/q-apps.js +++ b/src/main/resources/q-apps/q-apps.js @@ -1,4 +1,4 @@ -function httpGet(event, url) { +function httpGet(url) { var request = new XMLHttpRequest(); request.open("GET", url, false); request.send(null);