This commit is contained in:
syuilo 2023-04-06 10:12:30 +09:00
parent 384a3bed09
commit bd142b8fe5
1 changed files with 2 additions and 2 deletions

View File

@ -345,11 +345,11 @@ export class ApNoteService {
const existingEmojis = await this.emojisRepository.findBy({
host,
name: In(eomjiTags.map(tag => tag.name!.replace(/^:/, '').replace(/:$/, ''))),
name: In(eomjiTags.map(tag => tag.name!.replaceAll(':', ''))),
});
return await Promise.all(eomjiTags.map(async tag => {
const name = tag.name!.replace(/^:/, '').replace(/:$/, '');
const name = tag.name!.replaceAll(':', '');
tag.icon = toSingle(tag.icon);
const exists = existingEmojis.find(x => x.name === name);