Subject: | release_dates doesn't work any more |
The release_dates() function returns undef now, because it cannot find the table it is interested in.
This can simply be fixed by changing the code which checks for the class on the th elements to look for the id='release_dates' on the table itself.
< while(my $tag = $parser->get_tag('th')) {
< last if $tag->[1]->{class} && $tag->[1]->{class} eq 'xxxx';
---
Show quoted text
> while(my $tag = $parser->get_tag('table')) {
> last if $tag->[1]->{id} && $tag->[1]->{id} eq 'release_dates';
Once applied, it can then return the correct details.