remove old debug print
This commit is contained in:
parent
627dc6036e
commit
a62802af08
1 changed files with 4 additions and 6 deletions
|
@ -138,12 +138,10 @@ findDownloads u = go =<< downloadFeed u
|
||||||
Just $ ToDownload f u i $ Enclosure enclosureurl
|
Just $ ToDownload f u i $ Enclosure enclosureurl
|
||||||
Nothing -> mkquvi f i
|
Nothing -> mkquvi f i
|
||||||
mkquvi f i = case getItemLink i of
|
mkquvi f i = case getItemLink i of
|
||||||
Just link -> do
|
Just link -> ifM (quviSupported link)
|
||||||
liftIO $ print ("link", link)
|
( return $ Just $ ToDownload f u i $ QuviLink link
|
||||||
ifM (quviSupported link)
|
, return Nothing
|
||||||
( return $ Just $ ToDownload f u i $ QuviLink link
|
)
|
||||||
, return Nothing
|
|
||||||
)
|
|
||||||
Nothing -> return Nothing
|
Nothing -> return Nothing
|
||||||
|
|
||||||
{- Feeds change, so a feed download cannot be resumed. -}
|
{- Feeds change, so a feed download cannot be resumed. -}
|
||||||
|
|
Loading…
Reference in a new issue