From 3f6aae65a6a4a7ca6fb5cc0cbcdbe2dda4906eaf Mon Sep 17 00:00:00 2001 From: Cynthia Foxwell Date: Tue, 21 Oct 2025 23:23:28 -0600 Subject: [PATCH] logging: fix --- src/modules/logging.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modules/logging.js b/src/modules/logging.js index 9c2950d..77e7863 100644 --- a/src/modules/logging.js +++ b/src/modules/logging.js @@ -167,7 +167,7 @@ events.add("guildAuditLogEntryCreate", "logging", async function (entry) { default: { fields.push({ name: `\`${key}\``, - value, + value: typeof value == "string" ? value : `\`${JSON.stringify(value)}\``, inline: true, }); }