1
0
mirror of https://gitlab.com/comunic/comunicmobile synced 2025-06-19 00:05:16 +00:00

Open conversations in their context

This commit is contained in:
2021-04-06 18:22:45 +02:00
parent 66d8fbd234
commit 1d0609f66e
10 changed files with 43 additions and 17 deletions

View File

@ -14,7 +14,7 @@ Future<bool> openPrivateConversation(BuildContext context, int userID) async {
final convID = await ConversationsHelper().getPrivate(userID);
// Open the conversation
MainController.of(context).openConversation(convID);
MainController.of(context).openConversationById(convID);
return true;
} catch (e, s) {