Skip to content

Commit

Permalink
Fix error to due extra equal character in Files detection
Browse files Browse the repository at this point in the history
  • Loading branch information
DonnchaC committed Oct 31, 2024
1 parent cd99b29 commit 7e4f0ae
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/mvt/android/modules/androidqf/files.py
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ def check_indicators(self) -> None:
for result in self.results:
ioc = self.indicators.check_file_path(result["path"])
if ioc:
result["matched_indicator"] == ioc
result["matched_indicator"] = ioc
self.detected.append(result)
continue

Expand Down

0 comments on commit 7e4f0ae

Please sign in to comment.