mirror of
https://github.com/signalapp/Signal-Desktop.git
synced 2025-12-20 10:19:08 +00:00
17 lines
503 B
TypeScript
17 lines
503 B
TypeScript
// Copyright 2021 Signal Messenger, LLC
|
|
// SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
import type { AttachmentType } from '../types/Attachment.std.js';
|
|
import { deleteDraftFile } from './migrations.preload.js';
|
|
|
|
export async function deleteDraftAttachment(
|
|
attachment: Pick<AttachmentType, 'screenshotPath' | 'path'>
|
|
): Promise<void> {
|
|
if (attachment.screenshotPath) {
|
|
await deleteDraftFile(attachment.screenshotPath);
|
|
}
|
|
if (attachment.path) {
|
|
await deleteDraftFile(attachment.path);
|
|
}
|
|
}
|