web/queue: remove final file from results without swapping for a dummy

This commit is contained in:
wukko
2025-05-24 14:27:30 +06:00
parent 9c16efd3b1
commit 2f6196f6e3
3 changed files with 9 additions and 11 deletions

View File

@@ -53,7 +53,9 @@ export const removeFromFileStorage = async (filename: string) => {
try {
const cobaltDir = await root.getDirectoryHandle(COBALT_PROCESSING_DIR);
await cobaltDir.removeEntry(filename);
} catch {}
} catch {
// catch and ignore
}
}
}