(description)
| 263 | } |
| 264 | |
| 265 | _onDescription(description) { |
| 266 | // description.sdp = description.sdp.replace('b=AS:30', 'b=AS:1638400'); |
| 267 | this._conn.setLocalDescription(description) |
| 268 | .then(_ => this._sendSignal({ sdp: description })) |
| 269 | .catch(e => this._onError(e)); |
| 270 | } |
| 271 | |
| 272 | _onIceCandidate(event) { |
| 273 | if (!event.candidate) return; |
no test coverage detected