Merge pull request #41067 from Murena-SAS/preview-folder-deletes

Fix for previews not being generated sometimes
pull/33221/head
Arthur Schiwon 2024-01-18 11:46:12 +07:00 committed by GitHub
commit c4f4c5a3fb
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 3 additions and 0 deletions

@ -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) {