queries: replace the deprecated jQuery.parseJSON with JSON.parse

Signed-off-by: XhmikosR <xhmikosr@gmail.com>
This commit is contained in:
XhmikosR
2025-05-04 20:14:31 +03:00
committed by GitHub
parent e1a9b38c17
commit 7de8aea119

View File

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