Skip to content

Commit

Permalink
fix naive
Browse files Browse the repository at this point in the history
  • Loading branch information
klzgrad committed Jul 21, 2024
1 parent 7061c93 commit a3a475e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/net/tools/naive/naive_config.cc
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ bool NaiveConfig::Parse(const base::Value::Dict& value) {
return false;
}
origins_to_force_quic_on.insert(HostPortPair::FromURL(url));
} else if (last.is_https() || last.is_http()) {
} else if (last.is_https() || last.is_http() || last.is_socks()) {
seen_tcp = true;
} else {
std::cerr << "Invalid proxy scheme" << std::endl;
Expand Down

0 comments on commit a3a475e

Please sign in to comment.