diff options
author | fiaxh <git@lightrise.org> | 2021-11-15 13:29:13 +0100 |
---|---|---|
committer | fiaxh <git@lightrise.org> | 2021-11-15 13:29:13 +0100 |
commit | 2b3d150949fe1b3c4107e497be7dac8e2ba734aa (patch) | |
tree | 09eeff090da1337142ea1089abe72396979bccf7 /xmpp-vala/src/module/xep/0167_jingle_rtp | |
parent | ec6541518684d7c61c6475498c4ddf25d8f96b55 (diff) | |
download | dino-2b3d150949fe1b3c4107e497be7dac8e2ba734aa.tar.gz dino-2b3d150949fe1b3c4107e497be7dac8e2ba734aa.zip |
Improve call details dialog + small multi-party call fixes
Diffstat (limited to 'xmpp-vala/src/module/xep/0167_jingle_rtp')
-rw-r--r-- | xmpp-vala/src/module/xep/0167_jingle_rtp/content_parameters.vala | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/xmpp-vala/src/module/xep/0167_jingle_rtp/content_parameters.vala b/xmpp-vala/src/module/xep/0167_jingle_rtp/content_parameters.vala index 9022547d..c4c299c5 100644 --- a/xmpp-vala/src/module/xep/0167_jingle_rtp/content_parameters.vala +++ b/xmpp-vala/src/module/xep/0167_jingle_rtp/content_parameters.vala @@ -151,6 +151,7 @@ public class Xmpp.Xep.JingleRtp.Parameters : Jingle.ContentParameters, Object { } this.stream = parent.create_stream(content); + this.stream.weak_ref(() => this.stream = null); rtp_datagram.datagram_received.connect(this.stream.on_recv_rtp_data); rtcp_datagram.datagram_received.connect(this.stream.on_recv_rtcp_data); this.stream.on_send_rtp_data.connect(rtp_datagram.send_datagram); |