From fed48d8db69564868e6c79d3196e89100f6d80bc Mon Sep 17 00:00:00 2001 From: Christian Pauly Date: Mon, 1 Feb 2021 22:00:41 +0100 Subject: [PATCH] fix: reportEvent uses positive int --- lib/views/chat.dart | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/views/chat.dart b/lib/views/chat.dart index 829d67bd0..c00e6e659 100644 --- a/lib/views/chat.dart +++ b/lib/views/chat.dart @@ -312,11 +312,11 @@ class _ChatState extends State { title: L10n.of(context).howOffensiveIsThisContent, actions: [ AlertDialogAction( - key: 100, + key: -100, label: L10n.of(context).extremeOffensive, ), AlertDialogAction( - key: 50, + key: -50, label: L10n.of(context).offensive, ), AlertDialogAction(