fix emoji reactions

This commit is contained in:
Henry Jameson 2026-08-25 20:23:34 +03:00
commit 6d95851556

View file

@ -62,7 +62,7 @@ const EmojiReactions = {
},
async fetchEmojiReactionsIfMissing() {
const hasNoAccounts = this.status.emoji_reactions.find((r) => !r.accounts)
if (!hasNoAccounts) {
if (hasNoAccounts) {
return await useStatusesStore().fetchEmojiReactions(this.status.id)
}
},