Skip to content

Commit

Permalink
Add missing brace
Browse files Browse the repository at this point in the history
  • Loading branch information
kiwibrowser authored Oct 6, 2020
1 parent 13a490a commit 51a5ed5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion net/url_request/url_request_http_job.cc
Original file line number Diff line number Diff line change
Expand Up @@ -473,7 +473,7 @@ void URLRequestHttpJob::Start() {
request_info_.extra_headers.RemoveHeader(HttpRequestHeaders::kReferer);
}

if (request_info_.url.host().find("meet.google.com") != std::string::npos)
if (request_info_.url.host().find("meet.google.com") != std::string::npos) {
request_info_.extra_headers.RemoveHeader("x-goog-meeting-botguardid");
}

Expand Down

0 comments on commit 51a5ed5

Please sign in to comment.