Stop doing special rendering for RSS items, use HTML!

I missed the part of the RSS docs that allow HTML in the description.
This commit is contained in:
Angelo DiNardi
2017-06-09 23:13:40 -07:00
parent 17be3231ec
commit 4eee4ae728
2 changed files with 2 additions and 68 deletions
-3
View File
@@ -107,9 +107,6 @@ exports.init = function (sbot, config) {
case 'rss':
return pull(
// formatMsgs(feedId, ext, defaultOpts)
pull.filter( (msg) => {
return !!renderRssContent(defaultOpts, msg.value.content || {});
}),
renderRssItem(defaultOpts), wrapRss(about.name, defaultOpts)
);
default: