diff --git a/commands/search/know-your-meme.js b/commands/search/know-your-meme.js index 1c288c06..47e3d58d 100644 --- a/commands/search/know-your-meme.js +++ b/commands/search/know-your-meme.js @@ -69,7 +69,7 @@ module.exports = class KnowYourMemeCommand extends Command { const children = $('.bodycopy').first().children(); for (let i = 0; i < children.length; i++) { const child = children.eq(i); - if (child.text() === 'About') return children.eq(i + 1).text(); + if (child.text() === 'About') return children.eq(i + 1).text() || children.eq(i + 2).text(); } return null; } diff --git a/package.json b/package.json index 94a51489..a55e5478 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "xiao", - "version": "92.2.1", + "version": "92.2.2", "description": "Your personal server companion.", "main": "Xiao.js", "scripts": {