aboutsummaryrefslogtreecommitdiff
path: root/main/src/ui/add_conversation
diff options
context:
space:
mode:
authorfiaxh <git@lightrise.org>2020-06-06 22:24:29 +0200
committerfiaxh <git@lightrise.org>2020-06-06 22:24:29 +0200
commitdaf803e7730555639517de18c89da42e73557679 (patch)
tree448613b3dfb9fc6e62f1868b13026c9916d3df42 /main/src/ui/add_conversation
parentb72ea08d03da64b485b92761aa79af377a58a8e1 (diff)
downloaddino-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.vala5
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;
}