mirror of
https://github.com/nextcloud/server.git
synced 2026-06-11 01:30:50 -04:00
Catch NotFoundException as well in JSCombiner
Follow-up to #35576 Signed-off-by: Thomas Citharel <tcit@tcit.fr>
This commit is contained in:
parent
04b2803e02
commit
34ce53355a
1 changed files with 1 additions and 1 deletions
|
|
@ -198,7 +198,7 @@ class JSCombiner {
|
|||
$gzipFile->putContent(gzencode($res, 9));
|
||||
$this->logger->debug('JSCombiner: successfully cached: ' . $fileName);
|
||||
return true;
|
||||
} catch (NotPermittedException $e) {
|
||||
} catch (NotPermittedException|NotFoundException $e) {
|
||||
$this->logger->error('JSCombiner: unable to cache: ' . $fileName);
|
||||
return false;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue