Subject: | follow_link does not honor autocheck |
There's really nothing more to say than the subject, if the link does
not exist follow_link() exits with undef/empty list instead of die-ing
when autocheck is in force. The change is trivial, it suffices to add a
line between the "happy path" and the final return, like this:
return $self->get( $link->url ) if $link;
$self->die( 'link not found: ', $link->url ) if $self->{autocheck};
return;
Regards,
Flavio.