Skip to content

Commit

Permalink
Merge pull request #48623 from nextcloud/fix/allow-quota-wrapper-check
Browse files Browse the repository at this point in the history
  • Loading branch information
provokateurin authored Oct 9, 2024
2 parents 0b5f036 + 75381df commit 43b1fd7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/private/Files/Storage/Wrapper/Quota.php
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ private function isPartFile(string $path): bool {
/**
* Only apply quota for files, not metadata, trash or others
*/
private function shouldApplyQuota(string $path): bool {
protected function shouldApplyQuota(string $path): bool {
return str_starts_with(ltrim($path, '/'), 'files/');
}

Expand Down

0 comments on commit 43b1fd7

Please sign in to comment.