mirror of
https://github.com/miniflux/v2.git
synced 2025-07-12 16:58:36 +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
|
@ -16,6 +16,7 @@ import (
|
|||
func Parse(data io.Reader) (SubcriptionList, *errors.LocalizedError) {
|
||||
feeds := new(opml)
|
||||
decoder := xml.NewDecoder(data)
|
||||
decoder.Entity = xml.HTMLEntity
|
||||
decoder.CharsetReader = encoding.CharsetReader
|
||||
|
||||
err := decoder.Decode(feeds)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue