Missed a ?

This commit is contained in:
Michael Snoyman 2017-12-08 10:25:33 +02:00
parent f7b836b836
commit e054d25982
No known key found for this signature in database
GPG Key ID: A048E8C057E86876

View File

@ -68,7 +68,7 @@ instance FromJSON AppSettings where
appIpFromHeader <- o .: "ip-from-header"
appPostgresString <- o .: "postgres-string"
dev <- o .: "development" .!= defaultDev
dev <- o .:? "development" .!= defaultDev
appDetailedRequestLogging <- o .:? "detailed-logging" .!= dev
appShouldLogAll <- o .:? "should-log-all" .!= dev