Skip to content

Commit

Permalink
fix: missing semicolon
Browse files Browse the repository at this point in the history
Signed-off-by: lauti7 <[email protected]>
  • Loading branch information
lauti7 committed Oct 27, 2022
1 parent 2b38345 commit ba8c35f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/models/event.ts
Original file line number Diff line number Diff line change
Expand Up @@ -913,7 +913,7 @@ export class MatrixEvent extends TypedEventEmitter<MatrixEventEmittedEvents, Mat
* @returns {Object} The clear event of the encrypted event.
*/
public getClearEvent(): IClearEvent | null {
return this.clearEvent || null
return this.clearEvent || null;
}

/**
Expand Down

0 comments on commit ba8c35f

Please sign in to comment.