diff options
author | fiaxh <git@lightrise.org> | 2022-02-07 22:09:51 +0100 |
---|---|---|
committer | fiaxh <git@lightrise.org> | 2022-02-07 22:17:21 +0100 |
commit | 3088879a7b35fede494ca3a8b961a0142f36593a (patch) | |
tree | 371883a86b74bc7af3270e8c9d41b3fbda2191f3 /libdino/src/service/call_peer_state.vala | |
parent | ee085e3e0dfd886090ad1e9e958847403c60e691 (diff) | |
download | dino-3088879a7b35fede494ca3a8b961a0142f36593a.tar.gz dino-3088879a7b35fede494ca3a8b961a0142f36593a.zip |
Various call fixes
- Use groupchat message type for invites in MUCs
- Use call id (from propose) instead of message id for Call Invite Messages
- Fix call window controlls appearing when hovering controls
Diffstat (limited to 'libdino/src/service/call_peer_state.vala')
-rw-r--r-- | libdino/src/service/call_peer_state.vala | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libdino/src/service/call_peer_state.vala b/libdino/src/service/call_peer_state.vala index 52b3e6ef..de5c69cb 100644 --- a/libdino/src/service/call_peer_state.vala +++ b/libdino/src/service/call_peer_state.vala @@ -90,7 +90,7 @@ public class Dino.PeerState : Object { } stream.get_module(Xmpp.Xep.JingleMessageInitiation.Module.IDENTITY).send_session_propose_to_peer(stream, jid, sid, descriptions); -// call_state.cim_invite_id = stream.get_module(Xmpp.Xep.CallInvites.Module.IDENTITY).send_jingle_propose(stream, jid, sid, we_should_send_video); +// call_state.cim_call_id = stream.get_module(Xmpp.Xep.CallInvites.Module.IDENTITY).send_jingle_propose(stream, jid, sid, we_should_send_video); } else if (jid_for_direct != null) { yield call_resource(jid_for_direct); } |