Fix typo in keywords removal regex

This commit is contained in:
Georgiy Sitnikov 2025-10-27 14:23:51 +01:00 committed by GitHub
parent af66ef8799
commit 93b01f0951
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -86,7 +86,7 @@ actioncheck =
actionban = lgm=$(
msg="<matches>" ;\
[ -n "<keywords_to_remove>" ] && \
msg=$(echo "$msg" | sed -E "s/\b(<keywoards_to_remove>)\b/REDACTED/gI") ;\
msg=$(echo "$msg" | sed -E "s/\b(<keywords_to_remove>)\b/REDACTED/gI") ;\
msg=$(printf '%%.1000s\n...' "$msg") ;\
echo "$msg" ) ;\
curl -sSf "https://api.abuseipdb.com/api/v2/report" \