From d273b2ad84145501ba352c34dfd2b9ba05969743 Mon Sep 17 00:00:00 2001 From: Christian Pauly Date: Tue, 19 Jan 2021 16:30:11 +0100 Subject: [PATCH] fix: Voice message recording dialog --- lib/views/chat.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/views/chat.dart b/lib/views/chat.dart index 395a4b67..7f5c0ca5 100644 --- a/lib/views/chat.dart +++ b/lib/views/chat.dart @@ -263,7 +263,7 @@ class _ChatState extends State { String result; await showDialog( context: context, - builder: (context) => RecordingDialog( + builder: (c) => RecordingDialog( onFinished: (r) => result = r, l10n: L10n.of(context), ));