Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix build for newer versions of time #4

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion src/Data/Aeson/Filthy.hs
Original file line number Diff line number Diff line change
Expand Up @@ -256,7 +256,7 @@ instance FromJSON RFC2822Time where
-- This allows some whitespace in places it isn't allowed. Also the RFC definition of
-- whitespace is more permissive then spaces and newlines.
let ts = T.unpack . T.replace " " "" . T.replace "\n" "" $ t
in case getFirst . foldMap (\f -> parseTimeM True defaultTimeLocale f ts) $ (
in case getFirst . foldMap (\f -> First $ parseTimeM True defaultTimeLocale f ts) $ (
do -- Generate the allows RFC2822 time format following its ABNF.
-- The day of week is optional
dow <- ["", "%a,"]
Expand Down
2 changes: 1 addition & 1 deletion stack.yaml
Original file line number Diff line number Diff line change
@@ -1 +1 @@
resolver: nightly-2018-06-08
resolver: lts-16.23