From f0edc0f58945f598269b167f73f8dd3d90edebd7 Mon Sep 17 00:00:00 2001 From: Cynthia Foxwell Date: Sat, 18 May 2024 23:27:08 -0600 Subject: [PATCH] utility.jumbo: this has been broken for about a year or more because of a forgotten not --- src/modules/utility.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modules/utility.js b/src/modules/utility.js index b55a643..83df86b 100644 --- a/src/modules/utility.js +++ b/src/modules/utility.js @@ -1180,7 +1180,7 @@ jumbo.callback = async function (msg, line) { const emojiFound = await fetch(url, {method: "HEAD"}).then((res) => res.ok); - if (emojiFound) { + if (!emojiFound) { return "Emoji not found. The emoji set chosen might not have this emote as an image."; }