Subject: | Wrong handling AKA names |
Hi,
just find out, where is no AKA available in full_also_knows_as (eg http://akas.imdb.com/title/tt1852036/releaseinfo ) it returns WRONG akas from footer of website. Fix is:
in sub full_also_known_as one have to replace:
while($tag = $parser->get_tag('a')) {
last if $tag->[1]->{name} && $tag->[1]->{name} =~ /^akas$/i;
}
to
while($tag = $parser->get_tag('table')) {
last if $tag->[1]->{id} && $tag->[1]->{id} =~ /^akas$/i;
}