summaryrefslogtreecommitdiff
path: root/Command/ImportFeed.hs
diff options
context:
space:
mode:
Diffstat (limited to 'Command/ImportFeed.hs')
-rw-r--r--Command/ImportFeed.hs4
1 files changed, 2 insertions, 2 deletions
diff --git a/Command/ImportFeed.hs b/Command/ImportFeed.hs
index b60627cfe..ed3c3bcd3 100644
--- a/Command/ImportFeed.hs
+++ b/Command/ImportFeed.hs
@@ -150,9 +150,9 @@ downloadFeed url = do
showOutput
uo <- Url.getUrlOptions
liftIO $ withTmpFile "feed" $ \f h -> do
- fileEncoding h
+ hClose h
ifM (Url.download url f uo)
- ( parseFeedString <$> hGetContentsStrict h
+ ( parseFeedString <$> readFileStrictAnyEncoding f
, return Nothing
)