Skip to content

Commit b32ef94

Browse files
committed
Fix formatting style again
1 parent b445576 commit b32ef94

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

httplib.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8666,7 +8666,7 @@ inline bool ClientImpl::redirect(Request &req, Response &res, Error &error) {
86668666
// Same host redirect - use current client
86678667
if (next_scheme == scheme && next_host == host_ && next_port == port_) {
86688668
this->set_path_encode(
8669-
false); //Disable path encoding, redirects should already be encoded
8669+
false); // Disable path encoding, redirects should already be encoded
86708670
return detail::redirect(*this, req, res, path, location, error);
86718671
}
86728672

@@ -8759,7 +8759,7 @@ inline void ClientImpl::setup_redirect_client(ClientType &client) {
87598759
client.set_follow_location(
87608760
true); // Enable redirects to handle multi-step redirects
87618761
client.set_path_encode(
8762-
false); //Disable encoding, redirects should already be encoded
8762+
false); // Disable encoding, redirects should already be encoded
87638763
client.set_compress(compress_);
87648764
client.set_decompress(decompress_);
87658765

0 commit comments

Comments
 (0)