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
session username => 'I ♥ Perl';
When used immediately it works (because its not fetching it from the session).
On subsequent hits (i.e. when fetching from the session) the ♥ is mojibake.
- return JSON->new->allow_blessed->convert_blessed; + return JSON->new->allow_blessed->convert_blessed->utf8(1);
With that in place it shows I ♥ Perl when fetched from session.
I ♥ Perl
The text was updated successfully, but these errors were encountered:
The actual fix is likely more complex since it should dothe right thign based on the app’s config.
Sorry, something went wrong.
No branches or pull requests
Example
session username => 'I ♥ Perl';
When used immediately it works (because its not fetching it from the session).
On subsequent hits (i.e. when fetching from the session) the ♥ is mojibake.
Fix
With that in place it shows
I ♥ Perl
when fetched from session.The text was updated successfully, but these errors were encountered: