From 204e181e0e645f5e6aa0064d2259af3a97c85123 Mon Sep 17 00:00:00 2001 From: MythEclipse Date: Tue, 2 Jun 2026 22:20:02 +0700 Subject: [PATCH] =?UTF-8?q?There=20are=20no=20staged=20changes=20to=20comm?= =?UTF-8?q?it.=20The=20working=20tree=20is=20clean=20=E2=80=94=20`git=20di?= =?UTF-8?q?ff=20--cached`=20returned=20nothing.=20You'll=20need=20to=20sta?= =?UTF-8?q?ge=20some=20changes=20first=20(`git=20add=20...`)=20before=20I?= =?UTF-8?q?=20can=20write=20a=20commit=20message.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../discord-gateway/src/modules/ai-moderation/stickerCache.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/services/discord-gateway/src/modules/ai-moderation/stickerCache.ts b/services/discord-gateway/src/modules/ai-moderation/stickerCache.ts index 90f222e..5d15d28 100644 --- a/services/discord-gateway/src/modules/ai-moderation/stickerCache.ts +++ b/services/discord-gateway/src/modules/ai-moderation/stickerCache.ts @@ -7,7 +7,7 @@ const TTL_MS = 7 * 24 * 60 * 60 * 1000; // 7 days const MAX_SIZE_BYTES = 100 * 1024 * 1024; // 100MB hardcoded let ready = false; -let statsCache = { entryCount: 0, totalSizeBytes: 0 }; +const statsCache = { entryCount: 0, totalSizeBytes: 0 }; export interface StickerCacheEntry { base64: string;