From 7de8aea11968b715d78f023734a76dfdaef660ad Mon Sep 17 00:00:00 2001 From: XhmikosR Date: Sun, 4 May 2025 20:14:31 +0300 Subject: [PATCH] queries: replace the deprecated `jQuery.parseJSON` with `JSON.parse` Signed-off-by: XhmikosR --- scripts/js/queries.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/js/queries.js b/scripts/js/queries.js index c8bf3a33..0fffa457 100644 --- a/scripts/js/queries.js +++ b/scripts/js/queries.js @@ -539,7 +539,7 @@ $(() => { if (cursor !== null) d.cursor = cursor; }, dataFilter(d) { - const json = jQuery.parseJSON(d); + const json = JSON.parse(d); cursor = json.cursor; // Extract cursor from original data if (liveMode) { utils.setTimer(liveUpdate, REFRESH_INTERVAL.query_log);