소스 검색

Merge pull request #43391 from nextcloud/backport/43131/stable28

[stable28] fix(files): Don't attempt to format a partial cache entry
tags/v28.0.3rc1
Robin Appelman 4 달 전
부모
커밋
57ee788f01
No account linked to committer's email address
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1
    1
      lib/private/Files/Cache/Wrapper/CacheWrapper.php

+ 1
- 1
lib/private/Files/Cache/Wrapper/CacheWrapper.php 파일 보기

@@ -91,7 +91,7 @@ class CacheWrapper extends Cache {
*/
public function get($file) {
$result = $this->getCache()->get($file);
if ($result) {
if ($result instanceof ICacheEntry) {
$result = $this->formatCacheEntry($result);
}
return $result;

Loading…
취소
저장