From 408c8109f9370fc3f369b6ffc02245b63102b717 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 829d67bd..c00e6e65 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(