diff --git a/src/commands/fun/gelbooru.js b/src/commands/fun/gelbooru.js index d77294c..463e28b 100644 --- a/src/commands/fun/gelbooru.js +++ b/src/commands/fun/gelbooru.js @@ -55,7 +55,7 @@ function notEmpty(str) { const regexCutTags = /[\S\s]{1,875}[^,]{0,25}/; function formatTags(tags) { - const tagString = decode(tags.join(', ')); + const tagString = decode(tags.map(escapeMarkdown).join(', ')); if (tagString.length < 500) { return tagString;