Merge pull request #17830 from nextcloud/global-quota-return-quota

actually return the quote when getting global storage info
This commit is contained in:
Roeland Jago Douma 2019-11-07 23:53:04 +01:00 committed by GitHub
commit c0398e9a38
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 7 additions and 2 deletions

View File

@ -586,8 +586,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
];
}
/**