use logical or instead of bitwise or

pull/686/head
Jeff Becker 5 years ago
parent edd3611166
commit 454fb3bb72
No known key found for this signature in database
GPG Key ID: F357B3B42F6F9B05

@ -1052,7 +1052,7 @@ namespace llarp
[&](const std::string &,
const std::shared_ptr< service::Endpoint > &ep) -> bool {
const bool success = ep->LookupRouterAnon(remote, resultHandler);
sent |= success;
sent = sent || success;
return !success;
});
if(sent)

Loading…
Cancel
Save