diff --git a/reader/subscription/finder.go b/reader/subscription/finder.go index 40c87bcd..718116d1 100644 --- a/reader/subscription/finder.go +++ b/reader/subscription/finder.go @@ -69,9 +69,10 @@ func FindSubscriptions(websiteURL, userAgent, cookie, username, password string, func parseWebPage(websiteURL string, data io.Reader) (Subscriptions, *errors.LocalizedError) { var subscriptions Subscriptions queries := map[string]string{ - "link[type='application/rss+xml']": "rss", - "link[type='application/atom+xml']": "atom", - "link[type='application/json']": "json", + "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)