Update src/utils/exportUtils/Exporter.ts

Co-authored-by: Michael Telatynski <7t3chguy@googlemail.com>
This commit is contained in:
Jaiwanth 2021-06-08 18:37:44 +05:30 committed by GitHub
parent 03d8e1f931
commit d80e008d28
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -8,7 +8,7 @@ import { exportTypes } from "./exportUtils";
export default abstract class Exporter { export default abstract class Exporter {
protected constructor(protected room: Room, protected exportType: exportTypes, protected numberOfEvents?: number) {} protected constructor(protected room: Room, protected exportType: exportTypes, protected numberOfEvents?: number) {}
protected getTimelineConversation = () : MatrixEvent[] => { protected getTimelineConversation = (): MatrixEvent[] => {
if (!this.room) return; if (!this.room) return;
const cli = MatrixClientPeg.get(); const cli = MatrixClientPeg.get();