Prevent multiple matches to exemption rules incrementing the counter

modern-tables
Mark Veidemanis 2 years ago
parent 66dc57dc45
commit 2a3b1b82b3
Signed by: m
GPG Key ID: 5ACFCEED46C0904F

@ -96,6 +96,12 @@ def filter_blacklisted(user, response):
if blacklisted_item == str(content):
# Remove the item
if item in response["hits"]["hits"]:
# Let the UI know something was redacted
if (
"exemption"
not in response["hits"]["hits"][index]["_source"]
):
response["redacted"] += 1
# Anonymous
if user.is_anonymous:
response["hits"]["hits"].remove(item)
@ -107,9 +113,6 @@ def filter_blacklisted(user, response):
"exemption"
] = True
# Let the UI know something was redacted
response["redacted"] += 1
def run_main_query(client, user, query, custom_query=False, index=None, size=None):
"""

Loading…
Cancel
Save