Dear Maintainer,
I'm using LWP::UserAgent to fetch json information: the page
https://www.radiotimes.com/film/g6j5ty/well-meet-again is showing the failure
today.
This results in a "308 Permanent redirect". Using wget suggests that the
redirect is just the original URL with a '/' at the end.
But LWP::UserAgent returns with is_success false, and the response request->uri
method returns the original URL without the '/'.
A hack of detecting the combination of status 308 and an unchanged URL and
manually attaching a '/' has got it working again, but hardly seems correct.
It would seem more consistent with the way LWP::UserAgent handles redirects to
perform the redirect, while reporting the redirect target correctly through the
response request->uri method.