Skip to content

Commit 4aa8e80

Browse files
authored
Merge pull request #34579 from nextcloud/unencrypted-size-null
fix null error in getUnencryptedSize
2 parents 9f2ecc7 + 63316fc commit 4aa8e80

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/private/Files/Cache/CacheEntry.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ public function getUnencryptedSize(): int {
137137
if (isset($this->data['unencrypted_size']) && $this->data['unencrypted_size'] > 0) {
138138
return $this->data['unencrypted_size'];
139139
} else {
140-
return $this->data['size'];
140+
return $this->data['size'] ?? 0;
141141
}
142142
}
143143
}

0 commit comments

Comments
 (0)