Skip to content

Commit

Permalink
fix: update threadbook check_valuable
Browse files Browse the repository at this point in the history
  • Loading branch information
fan-tastic-z committed Jun 3, 2024
1 parent d7eb124 commit d7c4f75
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/grab/threatbook.rs
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ impl ThreadBookCrawler {
}

pub fn check_valuable(&self, data: &HighRisk) -> Result<bool> {
if !data.poc_exist || !data.premium {
if !data.poc_exist && !data.premium {
return Ok(false);
}

Expand Down

0 comments on commit d7c4f75

Please sign in to comment.