From d80e008d288903be15a4fd435fec8a10551cc84f Mon Sep 17 00:00:00 2001 From: Jaiwanth Date: Tue, 8 Jun 2021 18:37:44 +0530 Subject: [PATCH] Update src/utils/exportUtils/Exporter.ts Co-authored-by: Michael Telatynski <7t3chguy@googlemail.com> --- src/utils/exportUtils/Exporter.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utils/exportUtils/Exporter.ts b/src/utils/exportUtils/Exporter.ts index 66bb287354..270669374b 100644 --- a/src/utils/exportUtils/Exporter.ts +++ b/src/utils/exportUtils/Exporter.ts @@ -8,7 +8,7 @@ import { exportTypes } from "./exportUtils"; export default abstract class Exporter { protected constructor(protected room: Room, protected exportType: exportTypes, protected numberOfEvents?: number) {} - protected getTimelineConversation = () : MatrixEvent[] => { + protected getTimelineConversation = (): MatrixEvent[] => { if (!this.room) return; const cli = MatrixClientPeg.get();