From 93d5a1ecade204d095bfb45749d1b5d40246c973 Mon Sep 17 00:00:00 2001 From: Claude Code Date: Sun, 8 Mar 2026 20:05:58 +0100 Subject: [PATCH] =?UTF-8?q?Fix:=20Timeline-Faktencheck-Z=C3=A4hler=20nutzt?= =?UTF-8?q?=20jetzt=20getFactChecksAtTime()?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Der Timeline-Zähler zeigte bisher fact_check_count aus den Snapshot-Metadaten, die für ältere Snapshots 0 waren. Jetzt wird dieselbe Logik wie im Tab verwendet, sodass die Zahlen immer konsistent sind. Co-Authored-By: Claude Opus 4.6 --- lagebild/lagebild.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lagebild/lagebild.js b/lagebild/lagebild.js index 7fd9fcb..4bb0d7b 100644 --- a/lagebild/lagebild.js +++ b/lagebild/lagebild.js @@ -354,7 +354,7 @@ var Lagebild = { h += '' + this.fmtTimeOnly(snap.created_at) + ''; h += ''; h += '' + snap.article_count + ' Artikel'; - h += '' + (snap.fact_check_count || 0) + ' Faktenchecks'; + h += '' + this.getFactChecksAtTime(snap.created_at).length + ' Faktenchecks'; h += ''; } h += '';