diff options
author | fiaxh <git@lightrise.org> | 2020-06-06 22:24:29 +0200 |
---|---|---|
committer | fiaxh <git@lightrise.org> | 2020-06-06 22:24:29 +0200 |
commit | daf803e7730555639517de18c89da42e73557679 (patch) | |
tree | 448613b3dfb9fc6e62f1868b13026c9916d3df42 /main/src/ui/add_conversation | |
parent | b72ea08d03da64b485b92761aa79af377a58a8e1 (diff) | |
download | dino-daf803e7730555639517de18c89da42e73557679.tar.gz dino-daf803e7730555639517de18c89da42e73557679.zip |
Fix voice request notification
Diffstat (limited to 'main/src/ui/add_conversation')
-rw-r--r-- | main/src/ui/add_conversation/conference_details_fragment.vala | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/main/src/ui/add_conversation/conference_details_fragment.vala b/main/src/ui/add_conversation/conference_details_fragment.vala index d0a4c42e..0b8306e4 100644 --- a/main/src/ui/add_conversation/conference_details_fragment.vala +++ b/main/src/ui/add_conversation/conference_details_fragment.vala @@ -158,8 +158,9 @@ protected class ConferenceDetailsFragment : Box { ok_button.sensitive = true; if (join_result == null || join_result.nick != null) { Conversation conversation = stream_interactor.get_module(ConversationManager.IDENTITY).create_conversation(parsed_jid, account, Conversation.Type.GROUPCHAT); - Application app = GLib.Application.get_default() as Application; - app.controller.select_conversation(conversation);joined(); + Application app = GLib.Application.get_default() as Application; + app.controller.select_conversation(conversation); + joined(); return; } |