Add 'json' as possible-feed match string.

This commit is contained in:
Brent Simmons 2017-11-25 16:34:20 -08:00
parent 4ddf886012
commit 50f4e46913
1 changed files with 1 additions and 1 deletions

View File

@ -9,7 +9,7 @@
import Foundation
import RSParser
private let feedURLWordsToMatch = ["feed", "xml", "rss", "atom"]
private let feedURLWordsToMatch = ["feed", "xml", "rss", "atom", "json"]
class HTMLFeedFinder {