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) => { .catch((error) => {
let res = {}; let res = {};
res.error = error; res.error = error;
handleResponse(JSON.stringify(res), responseText); handleResponse(event, JSON.stringify(res));
}) })
} }

Loading…
Cancel
Save