mirror of
https://github.com/DIYgod/RSSHub.git
synced 2025-12-05 20:27:52 +08:00
fix: remove entity decoding for item html description (#8700)
This commit is contained in:
@@ -112,7 +112,7 @@ module.exports = async (ctx, next) => {
|
||||
$ele.removeAttr(e);
|
||||
});
|
||||
});
|
||||
item.description = entities.decodeXML($('body').html() + '') + (config.suffix || '');
|
||||
item.description = $('body').html() + '' + (config.suffix || '');
|
||||
}
|
||||
return item;
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user