aboutsummaryrefslogtreecommitdiffhomepage
path: root/reader/rss/rss.go
diff options
context:
space:
mode:
Diffstat (limited to 'reader/rss/rss.go')
-rw-r--r--reader/rss/rss.go3
1 files changed, 1 insertions, 2 deletions
diff --git a/reader/rss/rss.go b/reader/rss/rss.go
index 5573986..e5800b6 100644
--- a/reader/rss/rss.go
+++ b/reader/rss/rss.go
@@ -15,7 +15,6 @@ import (
"github.com/miniflux/miniflux2/helper"
"github.com/miniflux/miniflux2/model"
"github.com/miniflux/miniflux2/reader/date"
- "github.com/miniflux/miniflux2/reader/processor"
)
type rssFeed struct {
@@ -211,7 +210,7 @@ func (r *rssItem) Transform() *model.Entry {
entry.Date = r.GetDate()
entry.Author = r.GetAuthor()
entry.Hash = r.GetHash()
- entry.Content = processor.ItemContentProcessor(entry.URL, r.GetContent())
+ entry.Content = r.GetContent()
entry.Title = strings.TrimSpace(r.Title)
entry.Enclosures = r.GetEnclosures()