Fix extraneous call to cleanupCallHistoryMessages

This commit is contained in:
ayumi-signal 2024-05-03 14:24:50 -07:00 committed by GitHub
parent a57d5582f0
commit 568e31a7bf
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -8,7 +8,6 @@ import { strictAssert } from '../util/assert';
let callLinksData: ReadonlyArray<CallLinkType>; let callLinksData: ReadonlyArray<CallLinkType>;
export async function loadCallLinks(): Promise<void> { export async function loadCallLinks(): Promise<void> {
await dataInterface.cleanupCallHistoryMessages();
callLinksData = await dataInterface.getAllCallLinks(); callLinksData = await dataInterface.getAllCallLinks();
} }