mirror of
https://github.com/miniflux/v2.git
synced 2025-06-27 16:36:00 +00:00
Accept HTML entities when parsing XML
Every once in a while, one of my feeds would throw an XML parse error because it used ` ` or some other HTML entity. I feel Miniflux should be lenient here, and Go already has a handy hook to make this work.
This commit is contained in:
parent
6d39f2a4cb
commit
3a39d110f0
5 changed files with 5 additions and 0 deletions
|
@ -17,6 +17,7 @@ import (
|
|||
func Parse(data io.Reader) (*model.Feed, *errors.LocalizedError) {
|
||||
feed := new(rssFeed)
|
||||
decoder := xml.NewDecoder(data)
|
||||
decoder.Entity = xml.HTMLEntity
|
||||
decoder.CharsetReader = encoding.CharsetReader
|
||||
|
||||
err := decoder.Decode(feed)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue