You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The default URL for string validation is currently under a 302 rule.
According to LWP this is not a is_success.
it might be wise to change 223 to
if(index($response->{_content},"Status: 30") > -1 || $response->is_success)
as this will take into account redirects.
I am hesitant to hard code the 302 URL as this will likely be removed at some point.
Opinion?
The text was updated successfully, but these errors were encountered:
TomasDawe
changed the title
line 223 does not view a redirect as a success
W3C.pm line 223 does not view a redirect as a success
Nov 7, 2016
The default URL for string validation is currently under a 302 rule.
According to LWP this is not a is_success.
it might be wise to change 223 to
if(index($response->{_content},"Status: 30") > -1 || $response->is_success)
as this will take into account redirects.
I am hesitant to hard code the 302 URL as this will likely be removed at some point.
Opinion?
The text was updated successfully, but these errors were encountered: