mirror of
https://github.com/mifi/lossless-cut.git
synced 2024-11-21 18:02:35 +01:00
improve error handling
This commit is contained in:
parent
9c733742a2
commit
7230dc549b
@ -1449,11 +1449,11 @@ function App() {
|
||||
const batchOpenSingleFile = useCallback(async (path: string) => {
|
||||
if (workingRef.current) return;
|
||||
if (filePath === path) return;
|
||||
setWorking({ text: i18n.t('Loading file') });
|
||||
try {
|
||||
setWorking({ text: i18n.t('Loading file') });
|
||||
await userOpenSingleFile({ path });
|
||||
} catch (err) {
|
||||
handleError(err);
|
||||
await withErrorHandling(async () => {
|
||||
await userOpenSingleFile({ path });
|
||||
}, i18n.t('Failed to open file'));
|
||||
} finally {
|
||||
setWorking(undefined);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user