From b1ebe1864b6fa499d27ad758309cb41d11d570be Mon Sep 17 00:00:00 2001 From: CalDescent Date: Fri, 21 Apr 2023 19:27:24 +0100 Subject: [PATCH] Fixed bug in error handling. --- 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 cef06a89..262d19a8 100644 --- a/src/main/resources/q-apps/q-apps.js +++ b/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)); }) }