summaryrefslogtreecommitdiff
path: root/src/feeds.h
diff options
context:
space:
mode:
authorJaakko Keränen <jaakko.keranen@iki.fi>2021-09-25 08:59:49 +0300
committerJaakko Keränen <jaakko.keranen@iki.fi>2021-09-25 08:59:49 +0300
commit69ef98b895be4be6d3471f22e5e153878495523a (patch)
treee86774dab9a818d503be0fe5ebe6f23f69812b56 /src/feeds.h
parentde976d7d8bcfcb7bcc1436e215a8713aefbf091f (diff)
Feeds: Fixed tracking of heading entries; unread count
Heading entries were being discarded from the list of known entries prematurely, causing them to be rediscovered as new later on. The unread count ignores heading entries without a valid discovery time, i.e., the ones from the first update.
Diffstat (limited to 'src/feeds.h')
-rw-r--r--src/feeds.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/feeds.h b/src/feeds.h
index 5ff2adfb..8863d24f 100644
--- a/src/feeds.h
+++ b/src/feeds.h
@@ -34,6 +34,7 @@ struct Impl_FeedEntry {
34 iTime discovered; 34 iTime discovered;
35 iString url; 35 iString url;
36 iString title; 36 iString title;
37 iBool isHeading; /* URL fragment points to a heading */
37 uint32_t bookmarkId; /* note: runtime only, not a persistent ID */ 38 uint32_t bookmarkId; /* note: runtime only, not a persistent ID */
38}; 39};
39 40