mirror of
https://github.com/HifiExperiments/overte.git
synced 2025-04-08 00:32:41 +02:00
Fix handling of ICE candidate received from client
This commit is contained in:
parent
0fcb9423bf
commit
2971dd6185
1 changed files with 1 additions and 1 deletions
|
@ -489,7 +489,7 @@ void WebRTCDataChannels::onSignalingMessage(const QJsonObject& message) {
|
|||
|
||||
// Add a remote ICE candidate.
|
||||
if (data.contains("candidate")) {
|
||||
connection->addIceCandidate(data);
|
||||
connection->addIceCandidate(data.value("candidate").toObject());
|
||||
}
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue