Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 2 additions & 4 deletions src/Web/Internal/HttpApiData.hs
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ class ToHttpApiData a where
-- The default definition uses 'H.encodePathSegmentsRelative',
-- but this may be overriden with a more efficient version.
toEncodedUrlPiece :: a -> BS.Builder
toEncodedUrlPiece = H.encodePathSegmentsRelative . (:[]) . toUrlPiece
toEncodedUrlPiece = H.urlEncodeBuilder True . encodeUtf8 . toUrlPiece

-- | Convert to HTTP header value.
toHeader :: a -> ByteString
Expand Down Expand Up @@ -514,7 +514,7 @@ instance ToHttpApiData DayOfWeek where

toEncodedUrlPiece = unsafeToEncodedUrlPiece

-- |
-- |
-- >>> toUrlPiece Q4
-- "q4"
instance ToHttpApiData QuarterOfYear where
Expand Down Expand Up @@ -865,5 +865,3 @@ runAtto :: Atto.Parser a -> Text -> Either Text a
runAtto p t = case Atto.parseOnly (p <* Atto.endOfInput) t of
Left err -> Left (T.pack err)
Right x -> Right x