From 43daa299b15f8fdd0707b0236fc8c5c8f33b0e5d Mon Sep 17 00:00:00 2001 From: Cynthia Foxwell Date: Tue, 22 Jul 2025 18:58:17 -0600 Subject: [PATCH] logging: guh --- 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 7b54056..9c2950d 100644 --- a/src/modules/logging.js +++ b/src/modules/logging.js @@ -26,7 +26,7 @@ async function getLoggingChannel(guild) { function formatChange(before, after) { const beforeFormatted = before != null ? `\`${before}\`` : ""; - const afterFormatted = after != null ? `\`after\`` : ""; + const afterFormatted = after != null ? `\`${after}\`` : ""; return `${beforeFormatted} -> ${afterFormatted}`; }