-
Notifications
You must be signed in to change notification settings - Fork 7
Open
Description
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
- 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.
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels