mirror of
https://github.com/nextcloud/server.git
synced 2026-06-11 09:42:09 -04:00
Merge pull request #17851 from nextcloud/backport/17830/stable17
[stable17] actually return the quote when getting global storage info
This commit is contained in:
commit
c8cc98be03
1 changed files with 7 additions and 2 deletions
|
|
@ -585,8 +585,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