show a side action when finding known urls
This commit is contained in:
parent
10f297d989
commit
66dfeaff44
1 changed files with 3 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue