diff options
author | Joey Hess <joey@kitenet.net> | 2014-01-05 13:07:21 -0400 |
---|---|---|
committer | Joey Hess <joey@kitenet.net> | 2014-01-05 13:07:21 -0400 |
commit | e6331452d6219d2438da1b150097a4490b6feae7 (patch) | |
tree | a0f95c7ac0ae931986f1df1dceac6da36e8e94a6 /Command | |
parent | cb29393c83de9255109769d7b9c4b5b0f2d26bcc (diff) |
check if quvi page url has already been downloaded before
That is the url that is typically stored in the git-annex branch.
Kept the check for the video url too, just in case.
Diffstat (limited to 'Command')
-rw-r--r-- | Command/ImportFeed.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Command/ImportFeed.hs b/Command/ImportFeed.hs index 3fcc3bd85..32c16e527 100644 --- a/Command/ImportFeed.hs +++ b/Command/ImportFeed.hs @@ -134,7 +134,7 @@ performDownload relaxed cache todownload = case location todownload of Enclosure url -> checkknown url $ rundownload url (takeExtension url) $ addUrlFile relaxed url - QuviLink pageurl -> do + QuviLink pageurl -> checkknown pageurl $ do mp <- withQuviOptions Quvi.query [Quvi.quiet, Quvi.httponly] pageurl case mp of Nothing -> return False |