Fixed all underlying issues with the "Answer" call.
This commit is contained in:
@@ -231,8 +231,10 @@ async function channelCallJoin(activeCall)
|
||||
const answer = await peerConnection.createAnswer();
|
||||
await peerConnection.setLocalDescription(answer);
|
||||
|
||||
LogMessage(`Joining call with media answer: ${JSON.stringify(answer)}`);
|
||||
await window.HybridWebView.InvokeDotNet("WriteRtcAnswer", [JSON.stringify(roomAnswer)]);
|
||||
LogMessage("Joining call with media answer: " + JSON.stringify(answer));
|
||||
LogMessage("Calling C# WriteRtcAnswer with: " + JSON.stringify(answer));
|
||||
await window.HybridWebView.InvokeDotNet("WriteRtcAnswer", [JSON.stringify(answer)]);
|
||||
LogMessage("C# WriteRtcAnswer invoked");
|
||||
//TODO: Update offer in SurrealDB to include answer
|
||||
}
|
||||
else
|
||||
|
||||
Reference in New Issue
Block a user