mirror of
https://github.com/matrix-org/mjolnir.git
synced 2024-10-01 01:36:06 -04:00
Merge pull request #190 from matrix-org/gnuxie/mjolnir-overreact
Stop reacting to reports Mjolnir didn't send in report manager.
This commit is contained in:
commit
6d911ab33b
@ -142,6 +142,11 @@ export class ReportManager {
|
||||
let initialNoticeReport: IReport | undefined, confirmationReport: IReportWithAction | undefined;
|
||||
try {
|
||||
let originalEvent = await this.mjolnir.client.getEvent(roomId, relation.event_id);
|
||||
if (originalEvent.sender !== await this.mjolnir.client.getUserId()) {
|
||||
// Let's not handle reactions to events we didn't send as
|
||||
// some setups have two or more Mjolnir's in the same management room.
|
||||
return;
|
||||
}
|
||||
if (!("content" in originalEvent)) {
|
||||
return;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user