mirror of
https://github.com/Nheko-Reborn/nheko.git
synced 2024-11-22 19:08:58 +03:00
Merge pull request #280 from trilene/voip
Ignore empty remote ICE candidates
This commit is contained in:
commit
a7b979084f
1 changed files with 6 additions and 2 deletions
|
@ -426,8 +426,12 @@ WebRTCSession::acceptICECandidates(
|
|||
for (const auto &c : candidates) {
|
||||
nhlog::ui()->debug(
|
||||
"WebRTC: remote candidate: (m-line:{}):{}", c.sdpMLineIndex, c.candidate);
|
||||
g_signal_emit_by_name(
|
||||
webrtc_, "add-ice-candidate", c.sdpMLineIndex, c.candidate.c_str());
|
||||
if (!c.candidate.empty()) {
|
||||
g_signal_emit_by_name(webrtc_,
|
||||
"add-ice-candidate",
|
||||
c.sdpMLineIndex,
|
||||
c.candidate.c_str());
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue