We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
The partial function decodeUtf8 is applied here to user input and will throw impurely if the cookie value is not UTF-8.
decodeUtf8
serversession/serversession/src/Web/ServerSession/Core/Internal.hs
Line 593 in 726e7ac
Since the output here is going into a Maybe context anyway, I think an easy improvement here could be
Maybe
let maybeInputId = mcookieVal >>= (either (const Nothing) Just . TE.decodeUtf8') >>= fromPathPiece
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The partial function
decodeUtf8
is applied here to user input and will throw impurely if the cookie value is not UTF-8.serversession/serversession/src/Web/ServerSession/Core/Internal.hs
Line 593 in 726e7ac
Since the output here is going into a
Maybe
context anyway, I think an easy improvement here could beThe text was updated successfully, but these errors were encountered: