Closed iw0nderhow closed 2 years ago
YouTube provides the <link rel="alternate" type="rss+xml" href="..." /> in the body of the document, not in the head. The add-on only searches the head:
<link rel="alternate" type="rss+xml" href="..." />
body
head
https://github.com/Reeywhaar/want-my-rss/blob/4d6dd24a2e3d9802f1bb00f6a1dd02af0c5d78ff/ts/page.ts#L4
I assume searching the whole document instead of the document.head may work around this.
document
document.head
YouTube provides the
<link rel="alternate" type="rss+xml" href="..." />
in thebody
of the document, not in thehead
. The add-on only searches the head:https://github.com/Reeywhaar/want-my-rss/blob/4d6dd24a2e3d9802f1bb00f6a1dd02af0c5d78ff/ts/page.ts#L4
I assume searching the whole
document
instead of thedocument.head
may work around this.