aboutsummaryrefslogtreecommitdiff
path: root/internal/feed/state.go
diff options
context:
space:
mode:
Diffstat (limited to 'internal/feed/state.go')
-rw-r--r--internal/feed/state.go8
1 files changed, 8 insertions, 0 deletions
diff --git a/internal/feed/state.go b/internal/feed/state.go
index 9a6f836..8efef5e 100644
--- a/internal/feed/state.go
+++ b/internal/feed/state.go
@@ -74,3 +74,11 @@ func NewState(cfg *config.Config) *State {
return &state
}
+
+func (state *State) RemoveUndue() {
+ for name, feed := range state.feeds {
+ if !feed.NeedsUpdate(feed.cached.Last()) {
+ delete(state.feeds, name)
+ }
+ }
+}