This commit is contained in:
yumoqing 2024-08-20 14:36:15 +08:00
parent 60fe655892
commit 2877c739f7

View File

@ -204,7 +204,7 @@ bricks.RTCClient = class extends bricks.VBox {
}));
case 'answer':
if (d.from == self.peer_info){
var desc = new RTCSessionDescription(d.answer));
var desc = new RTCSessionDescription(d.answer);
this.peerConnection.setRemoteDescription(desc);
}
break;