mirror of https://github.com/KDE/kasts.git
Clarify comment about read/new status
This commit is contained in:
parent
e722ec29ee
commit
33f380e387
|
@ -90,7 +90,9 @@ Kirigami.SwipeListItem {
|
||||||
}
|
}
|
||||||
|
|
||||||
onClicked: {
|
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;}
|
if (!entry.enclosure) { entry.read = true; entry.new = false;}
|
||||||
pageStack.push("qrc:/EntryPage.qml", {"entry": entry})
|
pageStack.push("qrc:/EntryPage.qml", {"entry": entry})
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue