diff --git a/commands/search/searchAnime.js b/commands/search/searchAnime.js index a69a69e..f1d57df 100644 --- a/commands/search/searchAnime.js +++ b/commands/search/searchAnime.js @@ -63,7 +63,7 @@ class anime extends Command{ .setTitle(`${data.title.romaji} (${data.title.native + data.title.english?'/'+data.title.english:''})`) .setAuthor({name:"Rem-chan", iconURL:"https://i.imgur.com/g6FSNhL.png",url:'https://rem.wordfights.com/addtodiscord'}) .setColor(0x003284) - .setDescription(data.description.replaceAll('~! ', '').replaceAll(/<[^>]*>/g, '').substring(0, 1500) + "...") + .setDescription(data.description.replaceAll('~!', '').replaceAll('!~', '').replaceAll(/<[^>]*>/g, '').substring(0, 1500) + "...") .setFooter({ text: 'Rem-Chan on', iconURL: 'https://i.imgur.com/g6FSNhL.png' }) .setImage(data.coverImage) .setThumbnail(data.coverImage) diff --git a/commands/search/searchChar.js b/commands/search/searchChar.js index f34ea76..b75fbf7 100644 --- a/commands/search/searchChar.js +++ b/commands/search/searchChar.js @@ -63,7 +63,7 @@ class char extends Command{ .setTitle(`${data.name.full} (${data.name.native})`) .setAuthor({name:"Rem-chan", iconURL:"https://i.imgur.com/g6FSNhL.png",url:'https://rem.wordfights.com/addtodiscord'}) .setColor(0x003284) - .setDescription(data.description.replaceAll('~! ', '').replaceAll(/<[^>]*>/g, '').substring(0, 1500) + "...") + .setDescription(data.description.replaceAll('~!', '').replaceAll('!~', '').replaceAll(/<[^>]*>/g, '').substring(0, 1500) + "...") .setFooter({ text: 'Rem-Chan on', iconURL: 'https://i.imgur.com/g6FSNhL.png' }) .setImage(data.image) .setThumbnail(data.image) diff --git a/commands/search/searchManga.js b/commands/search/searchManga.js index 80ded9d..7b6d459 100644 --- a/commands/search/searchManga.js +++ b/commands/search/searchManga.js @@ -65,7 +65,7 @@ class manga extends Command{ .setTitle(`${data.title.romaji} (${data.title.native} / ${data.title.english})`) .setAuthor({name:"Rem-chan", iconURL:"https://i.imgur.com/g6FSNhL.png",url:'https://rem.wordfights.com/addtodiscord'}) .setColor(0x003284) - .setDescription(data.description.replaceAll('~! ', '').replaceAll(/<[^>]*>/g, '').substring(0, 1500) + "...") + .setDescription(data.description.replaceAll('~!', '').replaceAll('!~', '').replaceAll(/<[^>]*>/g, '').substring(0, 1500) + "...") .setFooter({ text: 'Rem-Chan on', iconURL: 'https://i.imgur.com/g6FSNhL.png' }) .addFields({name:'Page', value:data.url, inline:true}) .setImage(data.coverImage)