Skip to content

Commit

Permalink
Revert "Fix traceback on Abuse Report. (#230)" (#293)
Browse files Browse the repository at this point in the history
This reverts commit 27ae3ec.
  • Loading branch information
Yoric committed May 13, 2022
1 parent 27ae3ec commit bcc3405
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -73,5 +73,5 @@ typings/
# Python packing directories.
mjolnir.egg-info/

# Visual Studio data
# VS
.vs
6 changes: 3 additions & 3 deletions src/Mjolnir.ts
Original file line number Diff line number Diff line change
Expand Up @@ -253,7 +253,7 @@ export class Mjolnir {
// Setup Web APIs
console.log("Creating Web APIs");
const reportManager = new ReportManager(this);
reportManager.on("report.new", this.handleReport.bind(this));
reportManager.on("report.new", this.handleReport);
this.webapis = new WebAPIs(reportManager, this.ruleServer);

// Setup join/leave listener
Expand Down Expand Up @@ -1158,9 +1158,9 @@ export class Mjolnir {
return await this.eventRedactionQueue.process(this, roomId);
}

private async handleReport(e: { roomId: string, reporterId: string, event: any, reason?: string }) {
private async handleReport(roomId: string, reporterId: string, event: any, reason?: string) {
for (const protection of this.enabledProtections) {
await protection.handleReport(this, e.roomId, e.reporterId, e.event, e.reason);
await protection.handleReport(this, roomId, reporterId, event, reason);
}
}
}
2 changes: 1 addition & 1 deletion src/protections/IProtection.ts
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ export abstract class Protection {
}

/*
* Handle a single reported event from a protected room, to decide if we
* Handle a single reported event from a protecte room, to decide if we
* need to respond to it
*/
async handleReport(mjolnir: Mjolnir, roomId: string, reporterId: string, event: any, reason?: string): Promise<any> {
Expand Down

0 comments on commit bcc3405

Please sign in to comment.