Browse Source

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

pull/120/head
CalDescent 1 year ago
parent
commit
1ce2dcfb2b
  1. 2
      src/main/resources/q-apps/q-apps.js

2
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);

Loading…
Cancel
Save