From edf9a44d8ba04915b5f075a044fa348eed119332 Mon Sep 17 00:00:00 2001 From: Hazelnoot Date: Thu, 23 Oct 2025 01:52:41 -0400 Subject: [PATCH] fix typo in "Updating emoji" log --- packages/backend/src/core/CustomEmojiService.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/backend/src/core/CustomEmojiService.ts b/packages/backend/src/core/CustomEmojiService.ts index 6676719ccd..9c4b28e9e7 100644 --- a/packages/backend/src/core/CustomEmojiService.ts +++ b/packages/backend/src/core/CustomEmojiService.ts @@ -247,7 +247,7 @@ export class CustomEmojiService { : await this.emojisByKeyCache.fetch(encodeEmojiKey(criteria)); // Update the system logs - this.logger.info(`Creating emoji name=${emoji.name} host=${emoji.host}...`); + this.logger.info(`Updating emoji name=${emoji.name} host=${emoji.host}...`); // If changing the name, then make sure we don't have a conflict. const doNameUpdate = data.name !== undefined && data.name !== emoji.name;