diff --git a/module/tweaks/chatImageLinks.mjs b/module/tweaks/chatImageLinks.mjs index 8d17d0b..9c7ec3c 100644 --- a/module/tweaks/chatImageLinks.mjs +++ b/module/tweaks/chatImageLinks.mjs @@ -10,6 +10,7 @@ const IMAGE_TYPES = [ `jpeg`, `webp`, `svg`, + `gif`, ]; export function chatImageLinks() { @@ -95,6 +96,7 @@ function chatMessageHandler(chatLog, message, options) { // Prevent cancellation for non-matching messages const match = message.match(pattern); + console.log({match, message, pattern}); if (!match) { return }; mutateAndResendMessage(chatLog, message, options);