1
0
Fork 0
mirror of https://github.com/miniflux/v2.git synced 2025-07-02 16:38:37 +00:00

Add parser for RDF feeds

This commit is contained in:
Frédéric Guillot 2017-11-20 18:34:11 -08:00
parent c5cd38de83
commit 89307010ad
16 changed files with 491 additions and 36 deletions

View file

@ -20,7 +20,7 @@ func Parse(data io.Reader) (SubcriptionList, error) {
err := decoder.Decode(opml)
if err != nil {
return nil, errors.NewLocalizedError("Unable to parse OPML file: %v", err)
return nil, errors.NewLocalizedError("Unable to parse OPML file: %v.", err)
}
return opml.Transform(), nil