From: Olaf Wintermann Date: Fri, 26 Sep 2025 18:36:08 +0000 (+0200) Subject: fix updateCurrentFeedState X-Git-Url: https://uap-core.de/gitweb/?a=commitdiff_plain;h=389b364ef2e25de5df0eb3a8e7a5a595ee22036a;p=rssreader.git fix updateCurrentFeedState --- diff --git a/rss-application/src/main/kotlin/de/unixwork/rssreader/MainWindow.kt b/rss-application/src/main/kotlin/de/unixwork/rssreader/MainWindow.kt index af98dee..f1008c6 100644 --- a/rss-application/src/main/kotlin/de/unixwork/rssreader/MainWindow.kt +++ b/rss-application/src/main/kotlin/de/unixwork/rssreader/MainWindow.kt @@ -191,7 +191,7 @@ class MainWindow() { fun updateCurrentFeedState() { if(currentFeedIndex >= 0 && currentSublistIndex >= 0) { - sourceList.groups[currentFeedIndex].feeds.update(currentSublistIndex) + sourceList.groups[currentSublistIndex].feeds.update(currentFeedIndex) } }