Open Vlix opened 2 years ago
first (badParse $ TE.decodeUtf8 bs) $ eitherDecodeStrict bs
could probably be
import Data.Either (fromRight) ... first (badParse (fromRight "<Invalid UTF-8>" $ TE.decodeUtf8' bs)) $ eitherDecodeStrict bs
could probably be