Subject: | Issue with UTF8 encoding |
Date: | Fri, 26 Jun 2009 20:40:32 -0700 |
To: | bug-TVDB-API [...] rt.cpan.org |
From: | Derek Rachul <drachul [...] gmail.com> |
Greetings,
I'm running into an issue with respect to using the TVDB::API module
with "encoding 'utf8'" enabled.
The error reported is:
DBM::Deep: get_entry: Out of range (65533) at tvdb_test.pl line 472
Here is the content of tvdb_test.pl (with the actual key removed):
=========================
use strict;
use warnings 'all';
use encoding 'utf8';
use Data::Dumper;
use TVDB::API;
my $key = "xxxxxxxxxxxxx";
my $tvdb = TVDB::API::new(apikey=>$key);
my $data = $tvdb->getSeries("The Wire");
print Dumper($data);
=========================
For reference this is in Mac OSX 10.5 with perl 5.8.8 and TVDB::API version 0.33
Any help would be appreciated.
Thanks,
Derek R.