Skip to content

Commit

Permalink
Fix dialog overlap when resizing screen
Browse files Browse the repository at this point in the history
  • Loading branch information
nqhhdev committed Jun 4, 2024
1 parent fa69932 commit 90994a1
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion lib/pages/chat_list/chat_list.dart
Original file line number Diff line number Diff line change
Expand Up @@ -728,7 +728,9 @@ class ChatListController extends State<ChatList>
Logs().d(
"ChatList::_handleAnotherAccountAdded(): Handle recovery data for another account",
);
_trySync();
if (!matrixState.waitForFirstSync) {
_trySync();
}
}
}

Expand Down

0 comments on commit 90994a1

Please sign in to comment.