Merge pull request #43039 from nextcloud/fix/36463/preview-not-generated-stable26

[stable26] Fix for previews not being generated sometimes
This commit is contained in:
Ferdinand Thiessen 2024-01-26 15:54:29 +01:00 committed by GitHub
commit 6e5ef32cd7
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -61,6 +61,9 @@ class Watcher {
}
try {
if (is_null($node->getId())) {
return;
}
$folder = $this->appData->getFolder((string)$node->getId());
$folder->delete();
} catch (NotFoundException $e) {