Mon Jul 15 18:08:05 2019 MAT [...] cpan.fsck.com - Ticket created
I updated from 2.033, and now, I'm getting these errors:
Undefined subroutine &PDF::API2::Annotation::is_utf8 called at local/lib/perl5/PDF/API2/Annotation.pm line 69.
Changing all the:
if (is_utf8($url)) {
to
if (utf8::is_utf8($url)) {
fixes the issue here.
Tue Jul 16 10:37:05 2019 steve [...] deefs.net - Correspondence added
Thanks for the bug report!
I've removed those
is_utf8 checks since they're no longer necessary, improved the test coverage for annotations, and reviewed the other instances of
is_utf8 in the code to ensure the problem doesn't show up anywhere else.