From: Olaf Wintermann Date: Sat, 30 Aug 2025 09:46:08 +0000 (+0200) Subject: set webview content uri to item.link X-Git-Url: https://uap-core.de/gitweb/?a=commitdiff_plain;h=762a36a2c30ce7881969eb9f5d6c233810e41042;p=rssreader.git set webview content uri to item.link --- diff --git a/rss-application/src/main/kotlin/de/unixwork/rssreader/FeedList.kt b/rss-application/src/main/kotlin/de/unixwork/rssreader/FeedList.kt index b2e7c1d..0ccde9c 100644 --- a/rss-application/src/main/kotlin/de/unixwork/rssreader/FeedList.kt +++ b/rss-application/src/main/kotlin/de/unixwork/rssreader/FeedList.kt @@ -82,7 +82,7 @@ class FeedList : Document() { mimeType = "text/plain" } - webview.loadContent(null, content, mimeType, "utf-8") + webview.loadContent(item.link, content, mimeType, "utf-8") tabview.setIntValue(1) }