aureliendavid / rsspreview

WebExtension to preview RSS feeds in the browser
MIT License
103 stars 6 forks source link

Does not work with the following feed #52

Closed sojusnik closed 4 years ago

sojusnik commented 4 years ago

In this feed the text is present, but the preview has no layout.

Happens with v3.12.1 on Firefox 75.

aureliendavid commented 4 years ago

the reason is that the server serves this page wih:

Content-Type: text/html;

For it to be treated as an rss feed the Content-Type should be application/rss+xml or at least text/xml otherwise firefox will interpret it as html and display this block of text before the extension can process it.

sojusnik commented 4 years ago

Thanks for the clarification!