Thanks for your work on IMDB::Film and for making it work with the
recent changes at IMDB.
I've noticed that the certifications() function is not returning
anything on any of my tests (This is the rating like R, PG, etc). It
always appears to be this when I dump out the hash:
'_certifications' => {},
I used to parse it to find the US rating, but this is not working:
my $cert = $film->certifications();
for my $country (keys %$cert) {
if ($country =~ /US/) {
$tmpl->param(CERTIFICATION => $cert->{$country});
}
}
If you could please check on this I would appreciate it.
Thanks,
Brian