Skip to content

Commit d267045

Browse files
authored
Merge pull request #17 from PlexSheep/devel
hotfix: ip analyze was always done with ipv4
2 parents b6cc3eb + bff96c6 commit d267045

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/analyze.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -354,7 +354,7 @@ fn gereric_ip_analyze(
354354
error!("check '{}' has bad flags: {err}", c.get_hash());
355355
return false;
356356
}
357-
} == CheckFlag::IPv4
357+
} == ip_check_flag
358358
)
359359
.collect();
360360
let successes: Vec<&Check> = all.clone().into_iter().filter(|c| c.is_success()).collect();

0 commit comments

Comments
 (0)