Browse Source

Fixed bug in error handling.

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

2
src/main/resources/q-apps/q-apps.js

@ -23,7 +23,7 @@ function httpGetAsyncWithEvent(event, url) {
.catch((error) => {
let res = {};
res.error = error;
handleResponse(JSON.stringify(res), responseText);
handleResponse(event, JSON.stringify(res));
})
}

Loading…
Cancel
Save