remove fairly useless notifications

pull/841/head
Mikael Finstad 2021-08-27 11:51:26 +07:00
rodzic d9fd31a199
commit 612d883bd0
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 25AB36E3E81CBC26
1 zmienionych plików z 0 dodań i 2 usunięć

Wyświetl plik

@ -923,7 +923,6 @@ const App = memo(() => {
if (deleteProjectFile && saved.edlFilePath) await trash(saved.edlFilePath).catch(console.error);
// throw new Error('test');
if (deleteOriginal) await trash(saved.filePath);
toast.fire({ icon: 'info', title: i18n.t('Cleanup successful') });
} catch (err) {
try {
console.warn('Failed to trash', err);
@ -939,7 +938,6 @@ const App = memo(() => {
if (deleteTmpFiles && saved.previewFilePath) await unlink(saved.previewFilePath).catch(console.error);
if (deleteProjectFile && saved.edlFilePath) await unlink(saved.edlFilePath).catch(console.error);
if (deleteOriginal) await unlink(saved.filePath);
toast.fire({ icon: 'info', title: i18n.t('Cleanup successful') });
}
} catch (err2) {
errorToast(`Unable to delete file: ${err2.message}`);