mirror of
https://github.com/TakeV-Lambda/dino.git
synced 2024-11-21 22:44:23 +00:00
parent
117f193812
commit
b8e84c8326
1 changed files with 4 additions and 1 deletions
|
@ -45,7 +45,10 @@ public class Dino.PeerState : Object {
|
|||
this.stream_interactor = stream_interactor;
|
||||
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) => {
|
||||
if (this.sid != session.sid) return;
|
||||
|
||||
|
|
Loading…
Reference in a new issue