ConversationController: Remove static keyword

This commit is contained in:
Chris Svenningsen 2020-09-16 08:44:24 -07:00 committed by Josh Perez
parent 72292c1aa7
commit 42db239001

View file

@ -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<boolean | ConversationModelType | null | undefined> {