diff --git a/lib/private/Repair/NC16/CleanupCardDAVPhotoCache.php b/lib/private/Repair/NC16/CleanupCardDAVPhotoCache.php
index c9c7b5cf1c0ed11c09df693b881e289d8238376e..92ffcb54742e7046ce35c3f351c2b3f057689f37 100644
--- a/lib/private/Repair/NC16/CleanupCardDAVPhotoCache.php
+++ b/lib/private/Repair/NC16/CleanupCardDAVPhotoCache.php
@@ -29,6 +29,7 @@ use OCP\IConfig;
 use OCP\ILogger;
 use OCP\Migration\IOutput;
 use OCP\Migration\IRepairStep;
+use RuntimeException;
 
 /**
  * Class CleanupCardDAVPhotoCache
@@ -63,7 +64,7 @@ class CleanupCardDAVPhotoCache implements IRepairStep {
 	private function repair(IOutput $output): void {
 		try {
 			$folders = $this->appData->getDirectoryListing();
-		} catch (NotFoundException $e) {
+		} catch (NotFoundException|RuntimeException $e) {
 			return;
 		}