From 42db239001afffe9d8af449c48dbf46646d7dbeb Mon Sep 17 00:00:00 2001 From: Chris Svenningsen Date: Wed, 16 Sep 2020 08:44:24 -0700 Subject: [PATCH] ConversationController: Remove static keyword --- ts/ConversationController.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ts/ConversationController.ts b/ts/ConversationController.ts index 12d3be636..f12bcf0a4 100644 --- a/ts/ConversationController.ts +++ b/ts/ConversationController.ts @@ -579,7 +579,8 @@ export class ConversationController { * conversation the message belongs to OR null if a conversation isn't * found. */ - static async getConversationForTargetMessage( + // eslint-disable-next-line class-methods-use-this + async getConversationForTargetMessage( targetFromId: string, targetTimestamp: number ): Promise {