Skip Menu |

This queue is for tickets about the IMDB-Movie CPAN distribution.

Report information
The Basics
Id: 6230
Status: rejected
Priority: 0/
Queue: IMDB-Movie

People
Owner: Nobody in particular
Requestors: dean [...] cs.serenevy.net
Cc:
AdminCc:

Bug Information
Severity: Normal
Broken in: 0.12
Fixed in: (no value)



Subject: user_rating on movies "awaiting 5 votes"
If a movie does not have enough votes to have a user rating the the user_rating method returns "Credited cast". The following title (currently) has less than 5 votes and displays this behavior: http://www.imdb.com/title/tt0398103/ Adding the following line to the _user_rating subroutine solves this problem. my ($rating) = split('\/',$parser->get_text,2); + $rating = undef if $rating =~ /cast/; return $rating;
Subject: IMDB::Movie on hold
Thanks to everyone for submitting these bug reports. I am planning on rewriting IMDB::Movie (using WWW::Mechanize this time) and i will review all of these bugs/feature requests/patches when i write it. jeffa
use IMDB::Film;