diff options
Diffstat (limited to 'Command')
-rw-r--r-- | Command/ImportFeed.hs | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Command/ImportFeed.hs b/Command/ImportFeed.hs index a4a5cfd4c..d919a9626 100644 --- a/Command/ImportFeed.hs +++ b/Command/ImportFeed.hs @@ -67,7 +67,9 @@ start relaxed opttemplate = go Nothing {- This is expensive, so avoid running it more than once. -} getknownurls (Just cached) = return cached - getknownurls Nothing = S.fromList <$> knownUrls + getknownurls Nothing = do + showSideAction "checking known urls" + S.fromList <$> knownUrls findEnclosures :: URLString -> Annex (Maybe [ToDownload]) findEnclosures url = go =<< downloadFeed url |