Skip to content

Commit

Permalink
リモートのカスタム絵文字リアクションが表示されない問題を修正
Browse files Browse the repository at this point in the history
  • Loading branch information
EbiseLutica committed Jan 27, 2023
1 parent 63f6fcf commit 010378f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ const reactionName = computed(() => {
return r.slice(0, r.indexOf('@'));
});
const alternative: ComputedRef<string | null> = computed(() => (customEmojis).find(it => it.name === reactionName.value)?.name);
const alternative: ComputedRef<string | null> = computed(() => customEmojis.value.find(it => it.name === reactionName.value)?.name ?? null);
const canToggle = computed(() => !props.reaction.match(/@\w/) && $i);
Expand Down

0 comments on commit 010378f

Please sign in to comment.