summaryrefslogtreecommitdiffstats
path: root/lib/private/Repair/NC16
diff options
context:
space:
mode:
Diffstat (limited to 'lib/private/Repair/NC16')
-rw-r--r--lib/private/Repair/NC16/CleanupCardDAVPhotoCache.php5
1 files changed, 4 insertions, 1 deletions
diff --git a/lib/private/Repair/NC16/CleanupCardDAVPhotoCache.php b/lib/private/Repair/NC16/CleanupCardDAVPhotoCache.php
index 92ffcb54742..f0e5c2b2a1f 100644
--- a/lib/private/Repair/NC16/CleanupCardDAVPhotoCache.php
+++ b/lib/private/Repair/NC16/CleanupCardDAVPhotoCache.php
@@ -64,7 +64,10 @@ class CleanupCardDAVPhotoCache implements IRepairStep {
private function repair(IOutput $output): void {
try {
$folders = $this->appData->getDirectoryListing();
- } catch (NotFoundException|RuntimeException $e) {
+ } catch (NotFoundException $e) {
+ return;
+ } catch (RuntimeException $e) {
+ $this->logger->logException($e, ['message' => 'Failed to fetch directory listing in CleanupCardDAVPhotoCache']);
return;
}