diff options
author | René 'Necoro' Neumann <necoro@necoro.eu> | 2020-04-26 17:52:55 +0200 |
---|---|---|
committer | René 'Necoro' Neumann <necoro@necoro.eu> | 2020-04-26 17:52:55 +0200 |
commit | 63d20f3f7b02f33475049c12e03569a4f67fe810 (patch) | |
tree | 42cf1c8bd5d839a410c106c8a1d86b4d4180db37 /internal/feed/cache.go | |
parent | 9e69c102b596924d589693ce537c4fecae3aa44c (diff) | |
download | feed2imap-go-63d20f3f7b02f33475049c12e03569a4f67fe810.tar.gz feed2imap-go-63d20f3f7b02f33475049c12e03569a4f67fe810.tar.bz2 feed2imap-go-63d20f3f7b02f33475049c12e03569a4f67fe810.zip |
Options: "disable" and "ignore-hash"
Diffstat (limited to '')
-rw-r--r-- | internal/feed/cache.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/feed/cache.go b/internal/feed/cache.go index 2a51cb5..b92bfa7 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) []feeditem + filterItems([]feeditem, bool) []feeditem Commit() } |