We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2f3592f commit e60b518Copy full SHA for e60b518
1 file changed
devolutions-gateway/src/api/net.rs
@@ -420,17 +420,17 @@ impl EventFilter {
420
return false;
421
}
422
423
- return true;
+ true
424
425
- ScanEvent::Host { .. } => return true,
426
- _ => return false,
+ ScanEvent::Host { .. } => true,
+ _ => false,
427
},
428
NetworkScanResponse::Entry { status, .. } => {
429
if matches!(status, Status::Failed) && !self.enable_failure {
430
431
432
433
434
435
436
0 commit comments