aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--model/feed.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/model/feed.go b/model/feed.go
index 5782c4f..48cc2b6 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
- ReadCount int
+ UnreadCount int `json:"-"`
+ ReadCount int `json:"-"`
}
func (f *Feed) String() string {