diff --git a/src/parser/rss.go b/src/parser/rss.go index 9619437..0a275ee 100644 --- a/src/parser/rss.go +++ b/src/parser/rss.go @@ -82,7 +82,7 @@ func ParseRSS(r io.Reader) (*Feed, error) { Date: dateParse(firstNonEmpty(srcitem.DublinCoreDate, srcitem.PubDate)), URL: srcitem.Link, Title: srcitem.Title, - Content: srcitem.Description, + Content: firstNonEmpty(srcitem.ContentEncoded, srcitem.Description), AudioURL: podcastURL, }) }