diff options
author | René 'Necoro' Neumann <necoro@necoro.eu> | 2020-04-26 18:12:55 +0200 |
---|---|---|
committer | René 'Necoro' Neumann <necoro@necoro.eu> | 2020-04-26 18:12:55 +0200 |
commit | e4871e3834397e34a83a8df62dafe5a0875555ae (patch) | |
tree | 55aa8c070ee93110569bd9065033435929f7cbba /internal/feed/state.go | |
parent | ac568556e41231e07dd55b1d79675064ef4fed7b (diff) | |
download | feed2imap-go-e4871e3834397e34a83a8df62dafe5a0875555ae.tar.gz feed2imap-go-e4871e3834397e34a83a8df62dafe5a0875555ae.tar.bz2 feed2imap-go-e4871e3834397e34a83a8df62dafe5a0875555ae.zip |
Option `always-new`
Diffstat (limited to 'internal/feed/state.go')
-rw-r--r-- | internal/feed/state.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/feed/state.go b/internal/feed/state.go index ea9239a..455602c 100644 --- a/internal/feed/state.go +++ b/internal/feed/state.go @@ -72,7 +72,7 @@ func filterFeed(feed *Feed) { origLen := len(feed.items) log.Debugf("Filtering %s. Starting with %d items", feed.Name, origLen) - items := feed.cached.filterItems(feed.items, *feed.Options.IgnHash) + items := feed.cached.filterItems(feed.items, *feed.Options.IgnHash, *feed.Options.AlwaysNew) feed.items = items newLen := len(feed.items) |