aboutsummaryrefslogtreecommitdiff
path: root/internal/feed/cache.go
diff options
context:
space:
mode:
authorRené 'Necoro' Neumann <necoro@necoro.eu>2020-04-26 18:12:55 +0200
committerRené 'Necoro' Neumann <necoro@necoro.eu>2020-04-26 18:12:55 +0200
commite4871e3834397e34a83a8df62dafe5a0875555ae (patch)
tree55aa8c070ee93110569bd9065033435929f7cbba /internal/feed/cache.go
parentac568556e41231e07dd55b1d79675064ef4fed7b (diff)
downloadfeed2imap-go-e4871e3834397e34a83a8df62dafe5a0875555ae.tar.gz
feed2imap-go-e4871e3834397e34a83a8df62dafe5a0875555ae.tar.bz2
feed2imap-go-e4871e3834397e34a83a8df62dafe5a0875555ae.zip
Option `always-new`
Diffstat (limited to 'internal/feed/cache.go')
-rw-r--r--internal/feed/cache.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/feed/cache.go b/internal/feed/cache.go
index b92bfa7..df7559b 100644
--- a/internal/feed/cache.go
+++ b/internal/feed/cache.go
@@ -27,7 +27,7 @@ type CachedFeed interface {
Checked(withFailure bool)
Failures() uint
Last() time.Time
- filterItems([]feeditem, bool) []feeditem
+ filterItems(items []feeditem, ignoreHash bool, alwaysNew bool) []feeditem
Commit()
}