Fix if logic error (#5171)

Fixing a logical error in an if statement where we used `&&` which should have been `||`.

Signed-off-by: BlackDex <black.dex@gmail.com>
pull/5175/head
Mathijs van Veluw 2 weeks ago committed by GitHub
parent 38aad4f7be
commit d0581da638
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -1231,8 +1231,8 @@ async fn get_auth_request_response(
}; };
if auth_request.device_type != client_headers.device_type if auth_request.device_type != client_headers.device_type
&& auth_request.request_ip != client_headers.ip.ip.to_string() || auth_request.request_ip != client_headers.ip.ip.to_string()
&& !auth_request.check_access_code(code) || !auth_request.check_access_code(code)
{ {
err!("AuthRequest doesn't exist", "Invalid device, IP or code") err!("AuthRequest doesn't exist", "Invalid device, IP or code")
} }

Loading…
Cancel
Save