Skip to content

Commit

Permalink
correct patch split
Browse files Browse the repository at this point in the history
  • Loading branch information
TrimmingFool committed Jan 5, 2023
1 parent f564cde commit 2d4be21
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions plugins/rss/init.js
Original file line number Diff line number Diff line change
Expand Up @@ -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;
};
Expand Down

0 comments on commit 2d4be21

Please sign in to comment.