Skip to content

Commit

Permalink
use rdf description
Browse files Browse the repository at this point in the history
  • Loading branch information
nkanaev committed Apr 15, 2021
1 parent f845523 commit e54df07
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/parser/rdf.go
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ func ParseRDF(r io.Reader) (*Feed, error) {
URL: srcitem.Link,
Date: dateParse(srcitem.DublinCoreDate),
Title: srcitem.Title,
Content: srcitem.ContentEncoded,
Content: firstNonEmpty(srcitem.ContentEncoded, srcitem.Description),
})
}
return dstfeed, nil
Expand Down

0 comments on commit e54df07

Please sign in to comment.