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, }); }