From 4bfa212300dc0dd21fab177dfb1328468989e77d Mon Sep 17 00:00:00 2001 From: automated-signal <37887102+automated-signal@users.noreply.github.com> Date: Fri, 3 May 2024 17:09:24 -0500 Subject: [PATCH] Fix extraneous call to cleanupCallHistoryMessages Co-authored-by: ayumi-signal <143036029+ayumi-signal@users.noreply.github.com> --- ts/services/callLinksLoader.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/ts/services/callLinksLoader.ts b/ts/services/callLinksLoader.ts index 302561d9d3..bf205ce13e 100644 --- a/ts/services/callLinksLoader.ts +++ b/ts/services/callLinksLoader.ts @@ -8,7 +8,6 @@ import { strictAssert } from '../util/assert'; let callLinksData: ReadonlyArray; export async function loadCallLinks(): Promise { - await dataInterface.cleanupCallHistoryMessages(); callLinksData = await dataInterface.getAllCallLinks(); }