This commit is contained in:
sim1222 2022-12-22 17:01:29 +09:00
parent c9267e741d
commit 228bff758f
No known key found for this signature in database
GPG Key ID: 04EF48D01BEB0298

View File

@ -109,11 +109,11 @@ export async function openReactionImportMenu(ev: MouseEvent, reaction: string, n
reaction: name, reaction: name,
}); });
} else { } else {
await importEmoji(true); await importEmoji(true).then(() => {
console.log('endImport'); os.api('notes/reactions/create', {
os.api('notes/reactions/create', { noteId: noteId,
noteId: noteId, reaction: name,
reaction: name, });
}); });
} }
}, },