diff --git a/plugins/rss/init.js b/plugins/rss/init.js index 34d6b1069..1fb8ec4b7 100644 --- a/plugins/rss/init.js +++ b/plugins/rss/init.js @@ -1167,8 +1167,7 @@ rTorrentStub.prototype.getrssdetailsResponse = function(data) transformers: [bbclassTransform], }); const rawHTML = String(data); - const dirtyHTML = theWebUI.mapBBCodeToHTML(rawHTML); - const doc = new DOMParser().parseFromString(dirtyHTML, "text/html"); + const doc = new DOMParser().parseFromString(rawHTML, "text/html"); $("#rsslayout").html(s.clean_node(doc.body)); return false; };