mirror of
https://github.com/nextcloud/server.git
synced 2026-06-14 19:20:35 -04:00
If for some reason the json can't be decoded it is not cached
Should fix #6898 Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
This commit is contained in:
parent
79c9439c50
commit
448fa4f59e
1 changed files with 4 additions and 0 deletions
|
|
@ -119,6 +119,10 @@ class JSCombiner {
|
|||
|
||||
$deps = json_decode($deps, true);
|
||||
|
||||
if ($deps === NULL) {
|
||||
return false;
|
||||
}
|
||||
|
||||
foreach ($deps as $file=>$mtime) {
|
||||
if (!file_exists($file) || filemtime($file) > $mtime) {
|
||||
return false;
|
||||
|
|
|
|||
Loading…
Reference in a new issue