1
0
Fork 0
mirror of https://github.com/miniflux/v2.git synced 2025-09-15 18:57:04 +00:00

Show number of visible entries instead of number of read entries in feed list

This commit is contained in:
Frédéric Guillot 2023-11-08 14:35:44 +00:00
parent 2bc5ad53c2
commit ba65556eac
3 changed files with 7 additions and 5 deletions

View file

@ -57,10 +57,11 @@ type Feed struct {
Icon *FeedIcon `json:"icon"`
Entries Entries `json:"entries,omitempty"`
TTL int `json:"-"`
IconURL string `json:"-"`
UnreadCount int `json:"-"`
ReadCount int `json:"-"`
TTL int `json:"-"`
IconURL string `json:"-"`
UnreadCount int `json:"-"`
ReadCount int `json:"-"`
NumberOfVisibleEntries int `json:"-"`
}
type FeedCounters struct {