Merge pull request #17852 from nextcloud/backport/17830/stable16
[stable16] actually return the quote when getting global storage info
This commit is contained in:
commit
c3dc9b7e84
|
@ -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 New Issue