From 08b769f63a2d467c954c28f4bbd47627732d0071 Mon Sep 17 00:00:00 2001 From: okybaca Date: Mon, 28 Aug 2023 13:01:45 +0200 Subject: [PATCH] modified crawl list so the URL links to external URL --- htroot/js/Crawler.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/htroot/js/Crawler.js b/htroot/js/Crawler.js index f66063ee4..c2f77404e 100644 --- a/htroot/js/Crawler.js +++ b/htroot/js/Crawler.js @@ -411,7 +411,7 @@ function showRSS(RSS) { if (doc != null) { if (crawllist_body.length > 100000) crawllist_body = ""; for (var i=0; i" + RSS.items[i].description + "" + RSS.items[i].link + "" + crawllist_body; + crawllist_body = "" + RSS.items[i].description + "" + RSS.items[i].link + "" + crawllist_body; } doc.innerHTML = crawllist_head + crawllist_body + crawllist_tail; }