1
0
Fork 0

Fix finding JSON feeds with new MIME type

The 1.1 version (https://jsonfeed.org/version/1.1) for JSON feeds defines that feeds should have a MIME type of `application/feed+json` which Miniflux wasn't searching for
This commit is contained in:
James Loh 2021-08-21 17:29:39 +10:00 committed by fguillot
parent b7c229f30f
commit 2f6895e118

View file

@ -72,6 +72,7 @@ func parseWebPage(websiteURL string, data io.Reader) (Subscriptions, *errors.Loc
"link[type='application/rss+xml']": "rss",
"link[type='application/atom+xml']": "atom",
"link[type='application/json']": "json",
"link[type='application/feed+json']": "json",
}
doc, err := goquery.NewDocumentFromReader(data)