fixed issue when no quotas are found

This commit is contained in:
Roland Gruber 2020-04-19 20:53:56 +02:00
parent 8b38839dae
commit 58882affa7
1 changed files with 3 additions and 0 deletions

View File

@ -663,6 +663,9 @@ class quota extends baseModule {
$remote->disconnect();
$dirs = explode(":", $quotas);
array_pop($dirs); // remove empty element at the end
if (empty($dirs)) {
continue;
}
for ($i = 0; $i < sizeof($dirs); $i++) {
if (strpos($dirs[$i], self::$QUOTA_PREFIX) !== 0) {
unset($dirs[$i]);