Skip to content

Commit

Permalink
Fixed call in ftest
Browse files Browse the repository at this point in the history
  • Loading branch information
Necoro committed Apr 23, 2021
1 parent e3e9c33 commit 5a9d204
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/ftest/main.go
Expand Up @@ -44,7 +44,7 @@ func main() {
if strings.EqualFold(feedType, "rss") ||
strings.EqualFold(feedType, "r") {
p := rss.Parser{}
feed, err = p.Parse(strings.NewReader(fc))
feed, err = p.Parse(strings.NewReader(fc), gofeed.NewParser().BuildRSSExtParsers())
} else if strings.EqualFold(feedType, "atom") ||
strings.EqualFold(feedType, "a") {
p := atom.Parser{}
Expand Down

0 comments on commit 5a9d204

Please sign in to comment.