fix bug for incorrect chart

This commit is contained in:
Matt Keeley
2025-09-20 10:46:18 -07:00
parent 184abe29ca
commit ca16b8ab74
2 changed files with 1 additions and 1 deletions

Binary file not shown.

View File

@@ -88,7 +88,7 @@ class Spoofing:
return 7 if self.aspf in ["r", "s"] else 0
if self.sp in ["quarantine", "reject"]:
return 2
return 2 if self.aspf in ["r", "s"] else 8
return 2 if self.aspf in ["r", "s"] else 7
if self.p in ["quarantine", "reject"]:
if self.sp == "none":