added LICENSE

This commit is contained in:
David Zhao
2021-07-23 16:45:00 -07:00
parent 57c2ea91e5
commit 26981c1c8c
4 changed files with 193 additions and 3 deletions
+2 -1
View File
@@ -174,7 +174,8 @@ class SignalClient {
delegate.onOffer(toRTCSessionDescription(msg.offer));
break;
case SignalResponse_Message.trickle:
delegate.onTrickle(toRTCIceCandidate(msg.trickle.candidateInit), msg.trickle.target);
delegate.onTrickle(
toRTCIceCandidate(msg.trickle.candidateInit), msg.trickle.target);
break;
case SignalResponse_Message.update:
delegate.onParticipantUpdate(msg.update.participants);