Summary: | Emojis (or other utf8 characters) can break background job processing | ||
---|---|---|---|
Product: | Koha | Reporter: | Nick Clemens (kidclamp) <nick> |
Component: | Architecture, internals, and plumbing | Assignee: | Bugs List <koha-bugs> |
Status: | NEW --- | QA Contact: | Testopia <testopia> |
Severity: | normal | ||
Priority: | P5 - low | CC: | kyle, m.de.rooy, tomascohen |
Version: | Main | ||
Hardware: | All | ||
OS: | All | ||
Change sponsored?: | --- | Patch complexity: | --- |
Documentation contact: | Documentation submission: | ||
Text to go in the release notes: | Version(s) released in: | ||
Circulation function: |
Description
Nick Clemens (kidclamp)
2022-11-03 14:18:05 UTC
(In reply to Nick Clemens from comment #0) > Change your user's first name to be: > Developer [U+1F63A] Ok. You are asking for trouble :) > Maybe we should not do that later? No. You create a lot of problems when you encode in the middle of the process. The idea is: decode at start, encode at the end. Keep everything in perl internal format in between. (In reply to Marcel de Rooy from comment #1) > No. You create a lot of problems when you encode in the middle of the > process. The idea is: decode at start, encode at the end. Keep everything in > perl internal format in between. Note that I had utf8 here more in mind than JSON btw. But it follows a similar pattern.. |