aboutsummaryrefslogtreecommitdiffhomepage
path: root/model/feed.go
diff options
context:
space:
mode:
authorGravatar Frédéric Guillot <fred@miniflux.net>2019-10-29 22:48:07 -0700
committerGravatar Frédéric Guillot <fred@miniflux.net>2019-10-29 22:59:00 -0700
commitd3883126bfca47f1af57a6388ff7b00c997c924f (patch)
tree2396474da0cf1edbd3920d87f2a57c489c81e314 /model/feed.go
parente38333e272b24b6fcfa5399aa944f771558eb7aa (diff)
Improve storage module
Diffstat (limited to 'model/feed.go')
-rw-r--r--model/feed.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/model/feed.go b/model/feed.go
index 0e25d7b..9d0ab27 100644
--- a/model/feed.go
+++ b/model/feed.go
@@ -33,8 +33,8 @@ type Feed struct {
Category *Category `json:"category,omitempty"`
Entries Entries `json:"entries,omitempty"`
Icon *FeedIcon `json:"icon"`
- UnreadCount int `json:"unread_count"`
- ReadCount int `json:"read_count"`
+ UnreadCount int
+ ReadCount int
}
func (f *Feed) String() string {