fix: remove entity decoding for item html description (#8700)
This commit is contained in:
parent
0030283554
commit
51a7833bd0
|
|
@ -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;
|
||||
};
|
||||
|
|
|
|||
Loading…
Reference in New Issue