Subject: | Several movies not found, or no plots |
Date: | Thu, 29 Aug 2013 22:49:20 +1000 |
To: | bug-IMDB-Film [...] rt.cpan.org |
From: | Keni Popovski <kepopovski [...] gmail.com> |
When using version 0.53 of the module, several movie queries are returning either "Not Found", or if a title is returned there is no plot.
Testing with the following code (from the CPAN site):
my $imdbObj = new IMDB::Film(crit => '<movie name>');
if($imdbObj->status) {
print "Title: ".$imdbObj->title()."\n";
print "Year: ".$imdbObj->year()."\n";
print "Plot Symmary: ".$imdbObj->plot()."\n";
} else {
print "Something wrong: ".$imdbObj->error;
}
When searching for "shawshank":
Something wrong: Not Found
When searching for "the goonies":
Title: The Goonies
Year: 1985
Plot Symmary:
Thanks.