Fixed bug which prevented qortal:// URLs from working properly in most cases.

This commit is contained in:
CalDescent 2023-04-25 08:33:33 +01:00
parent ed6333f82e
commit 1ce2dcfb2b

View File

@ -1,4 +1,4 @@
function httpGet(event, url) {
function httpGet(url) {
var request = new XMLHttpRequest();
request.open("GET", url, false);
request.send(null);