Fix extraneous call to cleanupCallHistoryMessages

Co-authored-by: ayumi-signal <143036029+ayumi-signal@users.noreply.github.com>
This commit is contained in:
automated-signal 2024-05-03 17:09:49 -05:00 committed by GitHub
parent e0b4cda82d
commit 481abe09b8
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>;
export async function loadCallLinks(): Promise<void> {
await dataInterface.cleanupCallHistoryMessages();
callLinksData = await dataInterface.getAllCallLinks();
}