Skip to content

Commit

Permalink
Merge pull request #43389 from nextcloud/backport/43131/stable26
Browse files Browse the repository at this point in the history
  • Loading branch information
skjnldsv authored Feb 22, 2024
2 parents 437dbb8 + 3de1515 commit a667888
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/private/Files/Cache/Wrapper/CacheWrapper.php
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ protected function formatCacheEntry($entry) {
*/
public function get($file) {
$result = $this->getCache()->get($file);
if ($result) {
if ($result instanceof ICacheEntry) {
$result = $this->formatCacheEntry($result);
}
return $result;
Expand Down

0 comments on commit a667888

Please sign in to comment.