Sfoglia il codice sorgente

return the correct value when trying to get a non existing item from cache by id

Signed-off-by: Robin Appelman <robin@icewind.nl>
tags/v15.0.0RC1
Robin Appelman 5 anni fa
parent
commit
5d5cfefd35
Nessun account collegato all'indirizzo email del committer
1 ha cambiato i file con 2 aggiunte e 0 eliminazioni
  1. 2
    0
      lib/private/Files/Cache/Cache.php

+ 2
- 0
lib/private/Files/Cache/Cache.php Vedi File

@@ -150,6 +150,8 @@ class Cache implements ICache {
$data = $this->partial[$file];
}
return $data;
} else if (!$data) {
return $data;
} else {
return self::cacheEntryFromData($data, $this->mimetypeLoader);
}

Loading…
Annulla
Salva