diff --git a/package.json b/package.json index 7c748b41..57444ff3 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "xiao", - "version": "112.14.0", + "version": "112.14.1", "description": "Your personal server companion.", "main": "Xiao.js", "scripts": { diff --git a/util/Util.js b/util/Util.js index 9a7571b4..3319b3d0 100644 --- a/util/Util.js +++ b/util/Util.js @@ -138,7 +138,8 @@ module.exports = class Util { static cleanAnilistHTML(html) { let clean = html - .replace(/(
)+/g, '\n') + .replace(/\n/g, '') + .replace(/
/g, '\n') .replace(/'/g, '\'') .replace(/"/g, '"') .replace(/<\/?i>/g, '*')