Update or2logicaloroperator.py

This commit is contained in:
Anonymous ethc4 2025-07-14 12:06:51 -04:00 committed by GitHub
parent 4d8cbece45
commit dcc9d3c62a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -25,5 +25,4 @@ def tamper(payload, **kwargs):
""" """
if payload: if payload:
# Replace only ' OR ' (with spaces) to avoid breaking string literals # Replace only ' OR ' (with spaces) to avoid breaking string literals
payload = payload.replace(" OR ", " || ") return payload.replace(" OR ", " || ")
return payload