fix: reportEvent uses positive int

This commit is contained in:
Christian Pauly 2021-02-01 22:00:41 +01:00
parent baafebb5f9
commit 408c8109f9
1 changed files with 2 additions and 2 deletions

View File

@ -312,11 +312,11 @@ class _ChatState extends State<Chat> {
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(