This is a very useful Perl module. Thank you for making it.
Unfortunately, on some films, the cover image is not being set (although
the rest of the film info loads properly.) Example:
$imdb = new IMDB::Film(crit => 910970);
print "Wall-E Cover: " . $imdb->cover . "\n"; # FAILS
$imdb = new IMDB::Film(crit => 424345);
print "Clerks 2 Cover: " . $imdb->cover . "\n"; # WORKS
Some other examples of films with no cover:
http://www.imdb.com/title/tt0274117/
http://www.imdb.com/title/tt0245574/
http://www.imdb.com/title/tt0056801/
http://www.imdb.com/title/tt0092494/
I believe this is an issue related to the recent IMDB redesigns, as the
module was working perfectly up until a few weeks ago.
Thanks again for writing this great module.