Disable false positive check

It wasn't reliable at all
This commit is contained in:
ThioJoe
2023-12-29 16:50:16 -07:00
parent 59781bbbc2
commit ea76816e54

View File

@@ -795,6 +795,11 @@ def sort_samples(current):
# -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
def mark_possible_false_positive(current, authorID, text, matchReason):
# NOTE - This isn't really working so I'm just marking everything as false
current.matchSamplesDict[authorID]['possibleFalsePositive'] = False
return current
if matchReason != 'Filter Match':
current.matchSamplesDict[authorID]['possibleFalsePositive'] = False
return current