Merge pull request #4319 from owncloud/fixing-undefined-index-mtime-cache-scanner-master
use isset to prevent undefined index
This commit is contained in:
commit
1bbe979345
1 changed files with 1 additions and 1 deletions
2
lib/files/cache/scanner.php
vendored
2
lib/files/cache/scanner.php
vendored
|
@ -98,7 +98,7 @@ class Scanner extends BasicEmitter {
|
|||
$newData = $data;
|
||||
if ($reuseExisting and $cacheData = $this->cache->get($file)) {
|
||||
// only reuse data if the file hasn't explicitly changed
|
||||
if ($data['mtime'] === $cacheData['mtime']) {
|
||||
if (isset($data['mtime']) && isset($cacheData['mtime']) && $data['mtime'] === $cacheData['mtime']) {
|
||||
if (($reuseExisting & self::REUSE_SIZE) && ($data['size'] === -1)) {
|
||||
$data['size'] = $cacheData['size'];
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue