Compare commits

...

2 Commits

Author SHA1 Message Date
Travis Ralston
f66ac77a79
Merge pull request #525 from matrix-org/hs/name-that-protection
Log the name of the failed protection to the moderation room when it fails.
2024-09-20 09:15:44 +02:00
Will Hunt
35f59771a9 Name the protection that failed. 2024-09-19 16:06:20 +01:00

View File

@ -308,7 +308,7 @@ export class ProtectionManager {
LogService.error("ProtectionManager", "Error handling protection: " + protection.name);
LogService.error("ProtectionManager", "Failed event: " + eventPermalink);
LogService.error("ProtectionManager", extractRequestError(e));
await this.mjolnir.client.sendNotice(this.mjolnir.managementRoomId, "There was an error processing an event through a protection - see log for details. Event: " + eventPermalink);
await this.mjolnir.client.sendNotice(this.mjolnir.managementRoomId, `There was an error processing an event through a protection (${protection.name}) - see log for details. Event: ${eventPermalink}`);
continue;
}