From e5a4554bdd349aeae68b7c0e1891e05e136e9013 Mon Sep 17 00:00:00 2001 From: LittleSheep Date: Thu, 2 May 2024 20:52:20 +0800 Subject: [PATCH] :bug: Bug fixes of bug fixes --- lib/screens/chat/chat.dart | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/lib/screens/chat/chat.dart b/lib/screens/chat/chat.dart index b074b1a..6407802 100644 --- a/lib/screens/chat/chat.dart +++ b/lib/screens/chat/chat.dart @@ -30,7 +30,6 @@ class ChatScreen extends StatelessWidget { return IndentWrapper( title: chat.focusChannel?.name ?? 'Loading...', - noSafeArea: true, hideDrawer: true, appBarActions: chat.focusChannel != null ? [ @@ -206,7 +205,7 @@ class _ChatScreenWidgetState extends State { _chat.fetchOngoingCall(widget.alias), _chat.fetchChannel(widget.alias), ]); - return res[0] as Channel; + return res[1] as Channel; })(), builder: (context, snapshot) { if (!snapshot.hasData || snapshot.data == null) {