Fixed ragnar mention.
All checks were successful
Build Ragnar anti spam bot / Build (push) Successful in 1m15s

This commit is contained in:
retoor 2025-01-06 18:14:04 +00:00
parent dbdcb93cab
commit b3ddac8f94

View File

@ -116,6 +116,9 @@ class Bot:
rant = self.api.get_rant(rant_id) rant = self.api.get_rant(rant_id)
for comment in rant.get("comments", []): for comment in rant.get("comments", []):
print("Checking if sus comment: ", comment["body"]) print("Checking if sus comment: ", comment["body"])
if '@ragnar' in comment.get('body',''):
print("Ragnar is mentioned, so flagging as sus comment.")
return True
if comment["user_score"] >= 5: if comment["user_score"] >= 5:
print("User has reputation >= 5 so not sus.") print("User has reputation >= 5 so not sus.")
continue continue