🐛 Bug fixes of bug fixes
This commit is contained in:
parent
7e4fa47d00
commit
e5a4554bdd
@ -30,7 +30,6 @@ class ChatScreen extends StatelessWidget {
|
|||||||
|
|
||||||
return IndentWrapper(
|
return IndentWrapper(
|
||||||
title: chat.focusChannel?.name ?? 'Loading...',
|
title: chat.focusChannel?.name ?? 'Loading...',
|
||||||
noSafeArea: true,
|
|
||||||
hideDrawer: true,
|
hideDrawer: true,
|
||||||
appBarActions: chat.focusChannel != null
|
appBarActions: chat.focusChannel != null
|
||||||
? [
|
? [
|
||||||
@ -206,7 +205,7 @@ class _ChatScreenWidgetState extends State<ChatScreenWidget> {
|
|||||||
_chat.fetchOngoingCall(widget.alias),
|
_chat.fetchOngoingCall(widget.alias),
|
||||||
_chat.fetchChannel(widget.alias),
|
_chat.fetchChannel(widget.alias),
|
||||||
]);
|
]);
|
||||||
return res[0] as Channel;
|
return res[1] as Channel;
|
||||||
})(),
|
})(),
|
||||||
builder: (context, snapshot) {
|
builder: (context, snapshot) {
|
||||||
if (!snapshot.hasData || snapshot.data == null) {
|
if (!snapshot.hasData || snapshot.data == null) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user