Subject: | user rating and cast fail to parse |
I assume the page format changed, because the parser fails to find the user ratings. This one line change fixes it and allow the user rating and cast info to be collected.
*** Movie.pm Fri Jan 2 14:08:02 2004
--- /usr/lib/perl5/site_perl/5.8.0/IMDB/Movie.pm Sat Nov 13 20:46:38 2004
***************
*** 206,208 ****
if ($tag->[1]->{href}) {
! last if $tag->[1]->{href} eq 'ratings';
}
--- 206,208 ----
if ($tag->[1]->{href}) {
! last if $tag->[1]->{href} =~ /ratings$/;
}