aboutsummaryrefslogtreecommitdiff
path: root/internal/feed/state.go
diff options
context:
space:
mode:
authorRené 'Necoro' Neumann <necoro@necoro.eu>2020-06-20 22:37:44 +0200
committerRené 'Necoro' Neumann <necoro@necoro.eu>2020-06-20 22:37:44 +0200
commiteefdc799b929a4d6407737d281c34dd940e2823f (patch)
tree8cf6b1842dc5ca6a5044c1b3caba0916b8328eca /internal/feed/state.go
parent92f8d785ea478c02efd32f03478bcd11c85b40a4 (diff)
downloadfeed2imap-go-eefdc799b929a4d6407737d281c34dd940e2823f.tar.gz
feed2imap-go-eefdc799b929a4d6407737d281c34dd940e2823f.tar.bz2
feed2imap-go-eefdc799b929a4d6407737d281c34dd940e2823f.zip
print-cache: Tool for printing the contents of the cache
Diffstat (limited to 'internal/feed/state.go')
-rw-r--r--internal/feed/state.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/feed/state.go b/internal/feed/state.go
index 5831ff4..dae0917 100644
--- a/internal/feed/state.go
+++ b/internal/feed/state.go
@@ -48,7 +48,7 @@ func (state *State) LoadCache(fileName string, forceNew bool) error {
if forceNew {
cache, err = newCache()
} else {
- cache, err = loadCache(fileName)
+ cache, err = LoadCache(fileName)
}
if err != nil {