aboutsummaryrefslogtreecommitdiffhomepage
path: root/reader/processor
diff options
context:
space:
mode:
Diffstat (limited to 'reader/processor')
-rw-r--r--reader/processor/processor.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/reader/processor/processor.go b/reader/processor/processor.go
index ca04603..eacce9f 100644
--- a/reader/processor/processor.go
+++ b/reader/processor/processor.go
@@ -54,8 +54,8 @@ func (f *FeedProcessor) Process() {
}
}
- entry.Content = sanitizer.Sanitize(entry.URL, entry.Content)
entry.Content = rewrite.Rewriter(entry.URL, entry.Content, f.rewriteRules)
+ entry.Content = sanitizer.Sanitize(entry.URL, entry.Content)
}
}