Skip to content

Commit

Permalink
refactor: update verdict messages
Browse files Browse the repository at this point in the history
  • Loading branch information
ninoseki committed Aug 25, 2020
1 parent 886aeb1 commit b640e50
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion app/factories/inquest.py
Expand Up @@ -117,7 +117,8 @@ async def to_model(self) -> Verdict:
malicious=False,
details=[
Detail(
key="benign", description="There is no malicious attachment.",
key="benign",
description="There is no malicious attachment or InQuest doesn't have information about the attachments.",
)
],
)
Expand Down
3 changes: 2 additions & 1 deletion app/factories/virustotal.py
Expand Up @@ -80,7 +80,8 @@ async def to_model(self) -> Verdict:
malicious=False,
details=[
Detail(
key="benign", description="There is no malicious attachment.",
key="benign",
description="There is no malicious attachment or VirusTotal doesn't have information about the attachments.",
)
],
)
Expand Down

0 comments on commit b640e50

Please sign in to comment.