parent
6c258c2f28
commit
1c72f95988
|
@ -45,7 +45,10 @@ public class Dino.PeerState : Object {
|
||||||
this.stream_interactor = stream_interactor;
|
this.stream_interactor = stream_interactor;
|
||||||
this.calls = stream_interactor.get_module(Calls.IDENTITY);
|
this.calls = stream_interactor.get_module(Calls.IDENTITY);
|
||||||
|
|
||||||
var session_info_type = stream_interactor.module_manager.get_module(call.account, Xep.JingleRtp.Module.IDENTITY).session_info_type;
|
Xep.JingleRtp.Module jinglertp_module = stream_interactor.module_manager.get_module(call.account, Xep.JingleRtp.Module.IDENTITY);
|
||||||
|
if (jinglertp_module == null) return;
|
||||||
|
|
||||||
|
var session_info_type = jinglertp_module.session_info_type;
|
||||||
session_info_type.mute_update_received.connect((session,mute, name) => {
|
session_info_type.mute_update_received.connect((session,mute, name) => {
|
||||||
if (this.sid != session.sid) return;
|
if (this.sid != session.sid) return;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue