aboutsummaryrefslogtreecommitdiff
path: root/main/src/ui/occupant_menu
diff options
context:
space:
mode:
authorAlyssa Rosenzweig <1498135+alyssarosenzweig@users.noreply.github.com>2020-01-02 17:35:54 -0500
committerfiaxh <fiaxh@users.noreply.github.com>2020-01-02 23:35:54 +0100
commit067184f00c5b5b57b31a73af7fe6276ff9091123 (patch)
treef17dec01738235156effddc15367baf7e9cf2d8f /main/src/ui/occupant_menu
parentf3c952f8fc6470c4a3356e774df12d80008af459 (diff)
downloaddino-067184f00c5b5b57b31a73af7fe6276ff9091123.tar.gz
dino-067184f00c5b5b57b31a73af7fe6276ff9091123.zip
Fix starting private conversations with MUC members (#690)
At least for some users (?), the existing codepath was broken (the list row would come back null and we'd bail out silently). All we actually need is the JID, so it's easy enough to store this ourselves, fixing the bug. Also apply to kicking. Signed-off-by: Alyssa Rosenzweig <alyssa@rosenzweig.io>
Diffstat (limited to 'main/src/ui/occupant_menu')
-rw-r--r--main/src/ui/occupant_menu/view.vala13
1 files changed, 7 insertions, 6 deletions
diff --git a/main/src/ui/occupant_menu/view.vala b/main/src/ui/occupant_menu/view.vala
index 663e7505..958a4aa3 100644
--- a/main/src/ui/occupant_menu/view.vala
+++ b/main/src/ui/occupant_menu/view.vala
@@ -15,6 +15,8 @@ public class View : Popover {
private ListBox invite_list;
private Box? jid_menu = null;
+ private Jid? selected_jid;
+
public View(StreamInteractor stream_interactor, Conversation conversation) {
this.stream_interactor = stream_interactor;
this.conversation = conversation;
@@ -66,6 +68,7 @@ public class View : Popover {
}
private void show_menu(Jid jid, string name_) {
+ selected_jid = jid;
stack.transition_type = StackTransitionType.SLIDE_LEFT;
string name = name_;
@@ -102,10 +105,9 @@ public class View : Popover {
}
private void private_conversation_button_clicked() {
- ListRow? list_row = list.list_box.get_selected_row() as ListRow;
- if (list_row == null) return;
+ if (selected_jid == null) return;
- Conversation conversation = stream_interactor.get_module(ConversationManager.IDENTITY).create_conversation(list_row.jid, list_row.conversation.account, Conversation.Type.GROUPCHAT_PM);
+ Conversation conversation = stream_interactor.get_module(ConversationManager.IDENTITY).create_conversation(selected_jid, conversation.account, Conversation.Type.GROUPCHAT_PM);
stream_interactor.get_module(ConversationManager.IDENTITY).start_conversation(conversation);
Application app = GLib.Application.get_default() as Application;
@@ -113,10 +115,9 @@ public class View : Popover {
}
private void kick_button_clicked() {
- ListRow? list_row = list.list_box.get_selected_row() as ListRow;
- if (list_row == null) return;
+ if (selected_jid == null) return;
- stream_interactor.get_module(MucManager.IDENTITY).kick(conversation.account, conversation.counterpart, list_row.jid.resourcepart);
+ stream_interactor.get_module(MucManager.IDENTITY).kick(conversation.account, conversation.counterpart, selected_jid.resourcepart);
}
}