From 0db5315f8a1f92a5bfe4951560ab90a4a6762c67 Mon Sep 17 00:00:00 2001 From: Fabio Alessandrelli Date: Thu, 4 Jun 2020 21:10:34 +0200 Subject: [PATCH] Fix WebRTCPeerConnection set_local_description doc ice_candidate_created should be emitted after set_local_description no matter the type of the description (assuming no error is returned of course). (cherry picked from commit 39bcbf5690032f1f50712c5a908f0e51260471b0) --- modules/webrtc/doc_classes/WebRTCPeerConnection.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/webrtc/doc_classes/WebRTCPeerConnection.xml b/modules/webrtc/doc_classes/WebRTCPeerConnection.xml index b12c2a10ce8..5903b34f622 100644 --- a/modules/webrtc/doc_classes/WebRTCPeerConnection.xml +++ b/modules/webrtc/doc_classes/WebRTCPeerConnection.xml @@ -120,7 +120,7 @@ Sets the SDP description of the local peer. This should be called in response to [signal session_description_created]. - If [code]type[/code] is [code]answer[/code] the peer will start emitting [signal ice_candidate_created]. + After calling this function the peer will start emitting [signal ice_candidate_created] (unless an [enum Error] different from [constant OK] is returned).