show room ID in consequence log

This commit is contained in:
jesopo 2022-03-21 14:05:20 +00:00
parent fb027fe2af
commit 8d9f7fbb87

View File

@ -871,7 +871,9 @@ export class Mjolnir {
break; break;
} }
let message = `protection ${protection.name} enacting ${ConsequenceType[consequence.type]} against ${htmlEscape(sender)}`; let message = `protection ${protection.name} enacting ${ConsequenceType[consequence.type]}`
+ ` against ${htmlEscape(sender)}`
+ ` in ${htmlEscape(roomId)}`;
if (consequence.reason !== undefined) { if (consequence.reason !== undefined) {
// even though internally-sourced, there's no promise that `consequence.reason` // even though internally-sourced, there's no promise that `consequence.reason`
// will never have user-supplied information, so escape it // will never have user-supplied information, so escape it