The attached feed uses relative links like so (see also the attached feed XML). The feed level link looks like this:
<link>/blog/</link>
The feed extractor returns this link as is, and does not use the baseUrl property provided with parsing options. While using relative links in RSS feed is highly questionable, the extractor should use the baseUrl on the feed level too.
This issue can be worked around by providing custom processing like so:
if (link) {
this.site = link.startsWith("/") && options.baseUrl ? options.baseUrl + link : link;
}
The attached feed uses relative links like so (see also the attached feed XML). The feed level link looks like this:
The feed extractor returns this link as is, and does not use the
baseUrl
property provided with parsing options. While using relative links in RSS feed is highly questionable, the extractor should use thebaseUrl
on the feed level too.This issue can be worked around by providing custom processing like so:
feed.zip