mirror of
https://github.com/nextcloud/server.git
synced 2026-06-12 10:10:49 -04:00
Merge pull request #17853 from nextcloud/backport/17830/stable15
[stable15] actually return the quote when getting global storage info
This commit is contained in:
commit
aa79f599e3
1 changed files with 7 additions and 2 deletions
|
|
@ -611,8 +611,13 @@ class OC_Helper {
|
|||
$relative = 0;
|
||||
}
|
||||
|
||||
return array('free' => $free, 'used' => $used, 'total' => $total, 'relative' => $relative);
|
||||
|
||||
return [
|
||||
'free' => $free,
|
||||
'used' => $used,
|
||||
'total' => $total,
|
||||
'relative' => $relative,
|
||||
'quota' => $quota
|
||||
];
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
|||
Loading…
Reference in a new issue