From 6275dfdd063ef6d22fca73329fc709238106bd21 Mon Sep 17 00:00:00 2001 From: "philipp.hancke" Date: Tue, 25 Apr 2017 12:57:14 -0700 Subject: [PATCH] Fix comment about remote restart being requested in createOffer BUG=None Review-Url: https://codereview.webrtc.org/2837153002 Cr-Commit-Position: refs/heads/master@{#17870} --- webrtc/pc/webrtcsessiondescriptionfactory.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/webrtc/pc/webrtcsessiondescriptionfactory.cc b/webrtc/pc/webrtcsessiondescriptionfactory.cc index 168e5a2bc8..dc460ac14c 100644 --- a/webrtc/pc/webrtcsessiondescriptionfactory.cc +++ b/webrtc/pc/webrtcsessiondescriptionfactory.cc @@ -378,7 +378,7 @@ void WebRtcSessionDescriptionFactory::InternalCreateOffer( for (const cricket::ContentInfo& content : session_->local_description()->description()->contents()) { // Include all local ICE candidates in the SessionDescription unless - // the remote peer has requested an ICE restart. + // an ICE restart was requested. if (!request.options.transport_options[content.name].ice_restart) { CopyCandidatesFromSessionDescription(session_->local_description(), content.name, offer);