Don't use fromStrict

This commit is contained in:
Michael Snoyman 2013-12-04 14:16:25 +02:00
parent 02ab5320e3
commit 1747e2fdc8
2 changed files with 2 additions and 2 deletions

View File

@ -131,7 +131,7 @@ reverseProxy opts iappPort = do
#else
manager <- newManager def
#endif
let refreshHtml = LB.fromStrict $(embedFile "refreshing.html")
let refreshHtml = LB.fromChunks $ return $(embedFile "refreshing.html")
let onExc _ _ = return $ responseLBS status200
[ ("content-type", "text/html")
, ("Refresh", "1")

View File

@ -1,5 +1,5 @@
name: yesod-bin
version: 1.2.5
version: 1.2.5.1
license: MIT
license-file: LICENSE
author: Michael Snoyman <michael@snoyman.com>