add catch for timeout

This commit is contained in:
Charles 2025-11-03 08:45:33 -05:00
parent bb30808993
commit 6ecff164f5

View File

@ -685,6 +685,12 @@ class ListFiles extends ListRecords
} catch (FileExistsException) {
// Ignore if the folder already exists.
} catch (ConnectionException $e) {
Notification::make()
->body($e->getMessage())
->danger()
->send();
}
}