From a8680ba079e669d273ef4896915aff01ccaa5ed4 Mon Sep 17 00:00:00 2001 From: Christian Pauly Date: Sun, 28 Mar 2021 09:31:16 +0200 Subject: [PATCH] fix: Permission to send video call --- 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 30e3ae0af..9c3ddc0b2 100644 --- a/lib/views/chat.dart +++ b/lib/views/chat.dart @@ -663,7 +663,7 @@ class _ChatState extends State { ), ] : [ - if (room.canSendDefaultMessages) + if (room.canSendDefaultStates) IconButton( tooltip: L10n.of(context).videoCall, icon: Icon(Icons.video_call_outlined),