diff options
author | fiaxh <git@lightrise.org> | 2022-01-23 19:00:05 +0100 |
---|---|---|
committer | fiaxh <git@lightrise.org> | 2022-01-23 19:50:01 +0100 |
commit | b123800f26e78df5b4e01857bc5c2ac6a954ba5b (patch) | |
tree | 57c6e9aed7b585b5c288f2a527cc63bcd469f0e4 /xmpp-vala/src/module/xep/0272_muji.vala | |
parent | 19a3fa5e02984f186b5291b24954e1a5140d379e (diff) | |
download | dino-b123800f26e78df5b4e01857bc5c2ac6a954ba5b.tar.gz dino-b123800f26e78df5b4e01857bc5c2ac6a954ba5b.zip |
Small cleanup
Diffstat (limited to 'xmpp-vala/src/module/xep/0272_muji.vala')
-rw-r--r-- | xmpp-vala/src/module/xep/0272_muji.vala | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xmpp-vala/src/module/xep/0272_muji.vala b/xmpp-vala/src/module/xep/0272_muji.vala index 2bdc068e..b602d94c 100644 --- a/xmpp-vala/src/module/xep/0272_muji.vala +++ b/xmpp-vala/src/module/xep/0272_muji.vala @@ -197,7 +197,7 @@ namespace Xmpp.Xep.Muji { if (group_call.real_jids.has_key(presence.from)) { group_call.peer_left(group_call.real_jids[presence.from]); } - group_call.real_jids.remove(presence.from); + group_call.real_jids.unset(presence.from); } private void on_jid_finished_preparing(XmppStream stream, Jid jid, GroupCall group_call) { |