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
when using autoRedirect there is a problem with relative urls, because there are some feeds that
are using relative urls in the Location-Header since this is also valid:
Hi,
when using
autoRedirect
there is a problem with relative urls, because there are some feeds thatare using relative urls in the
Location-Header
since this is also valid:https://www.tagesschau.de/xml/rss2/
The problem is that only
AbsoluteUri
will be used for the redirect:So for relative urls an
System.InvalidOperationException
will be thrown here:(https://github.com/arminreiter/FeedReader/blob/master/FeedReader/Helpers.cs#L67-L76)
A fix for this problem could be done like this (I am not entirely sure if that is the correct way to get the absolute url though):
The text was updated successfully, but these errors were encountered: