Merge pull request #17853 from nextcloud/backport/17830/stable15

[stable15] actually return the quote when getting global storage info
This commit is contained in:
blizzz 2019-11-08 09:32:02 +01:00 committed by GitHub
commit aa79f599e3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

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