Merge pull request #9352 from nextcloud/9318_SCSSCacher_resetCache_catch_exception
Issue #9318: catch exceptions in SCSSCacher::resetCache()
This commit is contained in:
commit
0f8210792c
1 changed files with 5 additions and 1 deletions
|
@ -273,7 +273,11 @@ class SCSSCacher {
|
|||
$appDirectory = $this->appData->getDirectoryListing();
|
||||
foreach ($appDirectory as $folder) {
|
||||
foreach ($folder->getDirectoryListing() as $file) {
|
||||
$file->delete();
|
||||
try {
|
||||
$file->delete();
|
||||
} catch(NotPermittedException $e) {
|
||||
$this->logger->logException($e, ['message' => 'SCSSCacher: unable to delete file: ' . $file->getName()]);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue