Compare commits

...

2 Commits

Author SHA1 Message Date
Travis Ralston
d3f8c033b1
Merge pull request #526 from matrix-org/hs/await-redact
Fix NSFW protection not awaiting redaction
2024-09-20 00:46:28 +02:00
Will Hunt
4f73da38b8 await redact in nsfw protection 2024-09-19 22:41:51 +01:00

View File

@ -60,10 +60,9 @@ export class NsfwProtection extends Protection {
if (prediction["probability"] > mjolnir.config.nsfwSensitivity) {
await mjolnir.managementRoomOutput.logMessage(LogLevel.INFO, "NSFWProtection", `Redacting ${event["event_id"]} for inappropriate content.`);
try {
mjolnir.client.redactEvent(roomId, event["event_id"])
await mjolnir.client.redactEvent(roomId, event["event_id"]);
} catch (err) {
await mjolnir.managementRoomOutput.logMessage(LogLevel.ERROR, "NSFWProtection", `There was an error redacting ${event["event_id"]}: ${err}`);
}
}
}