mirror of
https://github.com/DIYgod/RSSHub.git
synced 2025-12-07 13:39:35 +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);
|
$ele.removeAttr(e);
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
item.description = entities.decodeXML($('body').html() + '') + (config.suffix || '');
|
item.description = $('body').html() + '' + (config.suffix || '');
|
||||||
}
|
}
|
||||||
return item;
|
return item;
|
||||||
};
|
};
|
||||||
|
|||||||
Reference in New Issue
Block a user