Keep origin protocol when converting to feed URI

Avoid downgrading HTTP to HTTPS. Introduces security and privacy risks; plus reduces performance with unnecessary redirects.
This commit is contained in:
Daniel Aleksandersen 2018-09-04 12:45:29 +02:00 committed by GitHub
parent b78406073c
commit 4916077fb1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 6 deletions

View File

@ -65,13 +65,9 @@ function subscribeToFeed(theFeed) {
// in the PageLoadEnd.js so we can be more confident it's a
// good feed: URL.
var feedURL = theFeed.href;
if (feedURL.match(/^http[s]?:\/\//))
if (!feedURL.startsWith('feed:'))
{
feedURL = feedURL.replace(/^http[s]?:\/\//, "feed://");
}
else if (feedURL.match(/^feed:/) == false)
{
feedURL = "feed:" + feedURL;
feedURL = 'feed:' + feedURL;
}
safari.extension.dispatchMessage("subscribeToFeed", { "url": feedURL });