Skip to content

Commit

Permalink
mmcdole#151: Disable extension support for channels
Browse files Browse the repository at this point in the history
  • Loading branch information
Necoro committed Sep 6, 2020
1 parent 175b9a2 commit a228bb7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions rss/parser.go
Original file line number Diff line number Diff line change
Expand Up @@ -146,8 +146,8 @@ func (rp *Parser) parseChannel(p *xpp.XMLPullParser) (rss *Feed, err error) {
name := strings.ToLower(p.Name)

if shared.IsExtension(p) {

ext, err := shared.ParseExtension(extensions, p, rp.extParsers)
// TODO: Currently no extParser support for channels
ext, err := shared.ParseExtension(extensions, p, make(shared.ExtParsers))
if err != nil {
return nil, err
}
Expand Down

0 comments on commit a228bb7

Please sign in to comment.