diff --git a/src/qml/QueueDelegate.qml b/src/qml/QueueDelegate.qml index 26e8c3bd..4600b74f 100644 --- a/src/qml/QueueDelegate.qml +++ b/src/qml/QueueDelegate.qml @@ -90,7 +90,9 @@ Kirigami.SwipeListItem { } onClicked: { - // only mark pure rss feeds as read; podcasts should only be marked read once they have been listened to + // only mark pure rss feeds as read + not new; + // podcasts should only be marked read once they have been listened to, and only + // marked as non-new once they've been downloaded if (!entry.enclosure) { entry.read = true; entry.new = false;} pageStack.push("qrc:/EntryPage.qml", {"entry": entry}) }