Skip to content

Commit

Permalink
Bugfix: i broke the QUOTA commands
Browse files Browse the repository at this point in the history
  • Loading branch information
the-djmaze committed Jun 3, 2022
1 parent 70e3e64 commit c0994b3
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ private function getQuota(bool $root, string $sFolderName) : ?array
if (!$this->IsSupported('QUOTA')) {
return null;
}
$oResponseCollection = $this->SendRequestGetResponse(($root?'GETQUOTAROOT':'GETQUOTA') . " {$this->EscapeFolderName($sFolderName)}");
$oResponseCollection = $this->SendRequest(($root?'GETQUOTAROOT':'GETQUOTA') . " {$this->EscapeFolderName($sFolderName)}");
$aReturn = array(0, 0);
foreach ($this->yieldUntaggedResponses() as $oResponse) {
if ('QUOTA' === $oResponse->StatusOrIndex
Expand Down

0 comments on commit c0994b3

Please sign in to comment.