diff --git a/src/Network/HTTPClient/Response/CurlResult.php b/src/Network/HTTPClient/Response/CurlResult.php index 79aa9c722f..2680a8b806 100644 --- a/src/Network/HTTPClient/Response/CurlResult.php +++ b/src/Network/HTTPClient/Response/CurlResult.php @@ -230,7 +230,7 @@ class CurlResult implements ICanHandleHttpResponses $this->redirectUrl = (string)Uri::fromParts((array)$redirect_parts); $this->isRedirectUrl = true; - $this->redirectIsPermanent = $this->returnCode == 301 or $this->returnCode == 308; + $this->redirectIsPermanent = $this->returnCode == 301 || $this->returnCode == 308; } else { $this->isRedirectUrl = false; $this->redirectIsPermanent = false;