Merge pull request #17852 from nextcloud/backport/17830/stable16

[stable16] actually return the quote when getting global storage info
This commit is contained in:
blizzz 2019-11-08 09:32:29 +01:00 committed by GitHub
commit c3dc9b7e84
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 7 additions and 2 deletions

View File

@ -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
];
}
/**