handle path not being set in shared cache (#24993)
This commit is contained in:
parent
c4b80b86db
commit
e7a55c4fef
|
@ -81,7 +81,7 @@ class Cache extends CacheJail {
|
|||
}
|
||||
|
||||
protected function formatCacheEntry($entry) {
|
||||
$path = $entry['path'];
|
||||
$path = isset($entry['path']) ? $entry['path'] : '';
|
||||
$entry = parent::formatCacheEntry($entry);
|
||||
$sharePermissions = $this->storage->getPermissions($path);
|
||||
if (isset($entry['permissions'])) {
|
||||
|
|
Loading…
Reference in New Issue