mirror of
https://github.com/nextcloud/server.git
synced 2026-06-11 01:30:50 -04:00
Merge pull request #58994 from nextcloud/backport/58979/stable33
This commit is contained in:
commit
53835fa4a9
1 changed files with 2 additions and 2 deletions
|
|
@ -258,8 +258,8 @@ class QuotaPlugin extends \Sabre\DAV\ServerPlugin {
|
|||
|
||||
if ($length > $freeSpace) {
|
||||
$msg = $isDir
|
||||
? "Insufficient space in $normalizedPath. $freeSpace available. Cannot create directory"
|
||||
: "Insufficient space in $normalizedPath, $length required, $freeSpace available";
|
||||
? "Insufficient space in $normalizedPath. Cannot create directory"
|
||||
: "Insufficient space in $normalizedPath";
|
||||
throw new InsufficientStorage($msg);
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue