add missing await in EmojiEntityService.packSimpleMany

This commit is contained in:
Hazelnoot 2025-10-23 01:53:00 -04:00
parent edf9a44d8b
commit 3baebd82db

View file

@ -60,7 +60,7 @@ export class EmojiEntityService implements OnModuleInit {
if (typeof(x) === 'string') { if (typeof(x) === 'string') {
x = fetched.get(x) ?? await this.customEmojiService.emojisByIdCache.fetch(x); x = fetched.get(x) ?? await this.customEmojiService.emojisByIdCache.fetch(x);
} }
return this.packSimple(x); return await this.packSimple(x);
})); }));
} }