1 files changed, 2 insertions, 1 deletions
diff --git a/src/WebRTCSession.cpp b/src/WebRTCSession.cpp
index 2ab83d9a..0770a439 100644
--- a/src/WebRTCSession.cpp
+++ b/src/WebRTCSession.cpp
@@ -857,7 +857,8 @@ WebRTCSession::acceptOffer(const std::string &sdp)
return false;
}
- // avoid a race that sometimes leaves the generated answer without media tracks (a=ssrc lines)
+ // avoid a race that sometimes leaves the generated answer without media tracks (a=ssrc
+ // lines)
std::this_thread::sleep_for(std::chrono::milliseconds(200));
// set-remote-description first, then create-answer
|