queries: replace the deprecated jQuery.parseJSON with JSON.parse (#3435)

This commit is contained in:
yubiuser
2025-05-04 19:27:46 +02:00
committed by GitHub

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