mirror of
https://github.com/the-draupnir-project/Draupnir.git
synced 2026-04-26 10:57:55 +00:00
show room ID in consequence log
This commit is contained in:
@@ -871,7 +871,9 @@ export class Mjolnir {
|
||||
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) {
|
||||
// even though internally-sourced, there's no promise that `consequence.reason`
|
||||
// will never have user-supplied information, so escape it
|
||||
|
||||
Reference in New Issue
Block a user