We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In file lib/pages/chat_list/chat_list.dart,
lib/pages/chat_list/chat_list.dart
await preloadRoomBotChecks(Matrix.of(context).client.rooms); await identifyAndRemoveDuplicates(filteredRooms);
is called in a WidgetsBinding.instance.addPostFrameCallback, which may cause the multiple second freeze after searching.
WidgetsBinding.instance.addPostFrameCallback
Could be moved to an isolate, or the Matrix Room IDs for bot rooms could be stored instead of recalculating at each start.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
In file
lib/pages/chat_list/chat_list.dart
,is called in a
WidgetsBinding.instance.addPostFrameCallback
, which may cause the multiple second freeze after searching.Could be moved to an isolate, or the Matrix Room IDs for bot rooms could be stored instead of recalculating at each start.
The text was updated successfully, but these errors were encountered: