summaryrefslogtreecommitdiff
path: root/htroot/js
diff options
context:
space:
mode:
authorMichael Peter Christen <mc@yacy.net>2026-01-02 20:25:04 +0100
committerMichael Peter Christen <mc@yacy.net>2026-01-02 20:25:04 +0100
commit2819742bdb053feb7057661748cc7af7dd725ff7 (patch)
treec7306ee2c09d480a98676df3d41d26186b127050 /htroot/js
parent3ecb0b459ee8500aa721b4ee8804bbde6f5c9dc3 (diff)
possible fix for search-0-results bug from
https://github.com/yacy/yacy_search_server/issues/499
Diffstat (limited to 'htroot/js')
-rw-r--r--htroot/js/yacysort.js11
1 files changed, 8 insertions, 3 deletions
diff --git a/htroot/js/yacysort.js b/htroot/js/yacysort.js
index d3769c225..e2d9bd835 100644
--- a/htroot/js/yacysort.js
+++ b/htroot/js/yacysort.js
@@ -327,9 +327,14 @@ var updateSidebar = function() {
*/
var processLatestInfo = function(latestInfo) {
if (latestInfo.feedRunning) {
- $.get("yacysearchlatestinfo.json", {
- eventID : theEventID
- }, processItem);
+ $.get(
+ "yacysearchitem.html",
+ {
+ eventID : theEventID,
+ item: itemCount
+ },
+ processItem
+ );
} else {
fetchingResults = false;
}