diff options
author | René 'Necoro' Neumann <necoro@necoro.eu> | 2020-05-02 20:53:35 +0200 |
---|---|---|
committer | René 'Necoro' Neumann <necoro@necoro.eu> | 2020-05-02 20:53:35 +0200 |
commit | 6bd8a6c2cd153bad9ca044b409e55302e10206c1 (patch) | |
tree | da1f175a7260a13fdfaa9a8817fc38351a480837 /internal/feed/cache.go | |
parent | 477241a2c2356c61b7317246040aee50d2a7a81d (diff) | |
download | feed2imap-go-6bd8a6c2cd153bad9ca044b409e55302e10206c1.tar.gz feed2imap-go-6bd8a6c2cd153bad9ca044b409e55302e10206c1.tar.bz2 feed2imap-go-6bd8a6c2cd153bad9ca044b409e55302e10206c1.zip |
Restructure
Diffstat (limited to 'internal/feed/cache.go')
-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 731eab1..5674de4 100644 --- a/internal/feed/cache.go +++ b/internal/feed/cache.go @@ -28,7 +28,7 @@ type CachedFeed interface { Failures() int Last() time.Time ID() string - filterItems(items []feeditem, ignoreHash bool, alwaysNew bool) []feeditem + filterItems(items []item, ignoreHash bool, alwaysNew bool) []item Commit() } |