log when renegotiation would be triggered
This commit is contained in:
parent
8e82aad86b
commit
c02e1de001
1 changed files with 1 additions and 0 deletions
|
@ -314,6 +314,7 @@ export class PeerCall implements IDisposable {
|
||||||
await this.sendSignallingMessage({type: EventType.Invite, content}, log);
|
await this.sendSignallingMessage({type: EventType.Invite, content}, log);
|
||||||
this.setState(CallState.InviteSent, log);
|
this.setState(CallState.InviteSent, log);
|
||||||
} else if (this._state === CallState.Connected || this._state === CallState.Connecting) {
|
} else if (this._state === CallState.Connected || this._state === CallState.Connecting) {
|
||||||
|
log.log("would send renegotiation now but not implemented");
|
||||||
// send Negotiate message
|
// send Negotiate message
|
||||||
//await this.sendSignallingMessage({type: EventType.Invite, content});
|
//await this.sendSignallingMessage({type: EventType.Invite, content});
|
||||||
//this.setState(CallState.InviteSent);
|
//this.setState(CallState.InviteSent);
|
||||||
|
|
Reference in a new issue