mirror of https://github.com/KDE/kasts.git
Fix image loading
This commit is contained in:
parent
d198a7da84
commit
3206a6798f
|
@ -32,7 +32,7 @@ Kirigami.SwipeListItem {
|
|||
anchors.top: parent.top
|
||||
anchors.bottom: parent.bottom
|
||||
text: model.feed.name
|
||||
icon: model.feed.refreshing ? "view-refresh" : model.feed.image === "" ? "rss" : model.feed.image
|
||||
icon: model.feed.refreshing ? "view-refresh" : model.feed.image === "" ? "rss" : Fetcher.image(model.feed.image)
|
||||
subtitle: i18np("%1 unread entry", "%1 unread entries", model.feed.unreadEntryCount)
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue