1
0

不明なリアクションのフォールバックに star を使うようにするオプション

This commit is contained in:
syuilo
2019-03-18 01:03:35 +09:00
parent 810ed50976
commit 08c176e549
10 changed files with 26 additions and 16 deletions
+2 -1
View File
@@ -10,6 +10,7 @@ export default function(reaction: string): string {
case 'confused': return '😥';
case 'rip': return '😇';
case 'pudding': return '🍮';
default: return '';
case 'star': return '';
default: return reaction;
}
}