NetNewsWire icon indicating copy to clipboard operation
NetNewsWire copied to clipboard

images can't display

Open yk1316 opened this issue 2 years ago • 4 comments

Hello, thank you very much for your RSS software.

During use, I discovered an issue: Subscribed to this RSS feed: https://manateelazycat.github.io/feed.xml,This website has articles such as https://manateelazycat.github.io/2023/08/06/tourism-daxinganling/ Unable to display images inside.

Thank you for your selfless efforts. Thank you!

yk1316 avatar Aug 22 '23 09:08 yk1316

I believe this feed got wrong URLs for img tags, they should start with http[s]://

GetToSet avatar Aug 27 '23 13:08 GetToSet

I believe this feed got wrong URLs for img tags, they should start with http[s]://

Yes,the address of these images start with "//", do you have plan to fix id ?

yk1316 avatar Sep 01 '23 02:09 yk1316

// is a pretty common convention on the web, it sends requests over whatever protocol the page is currently using. So if I visit https://example.org/index.html and it embeds //example.org/image.png, it will load image.png using https as well. If I use http, so does the image. Browsers get cranky when you mix and match, so this is the solution to that.

different55 avatar May 14 '24 14:05 different55

I hadn’t realized that // was common for this — I know about / of course for server-relative URLs, but I hadn’t realized that // was a synonym

brentsimmons avatar May 14 '24 21:05 brentsimmons