add missing await in EmojiEntityService.packSimpleMany
This commit is contained in:
parent
edf9a44d8b
commit
3baebd82db
1 changed files with 1 additions and 1 deletions
|
|
@ -60,7 +60,7 @@ export class EmojiEntityService implements OnModuleInit {
|
|||
if (typeof(x) === 'string') {
|
||||
x = fetched.get(x) ?? await this.customEmojiService.emojisByIdCache.fetch(x);
|
||||
}
|
||||
return this.packSimple(x);
|
||||
return await this.packSimple(x);
|
||||
}));
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue