Bugfix: quotaDebounce was removed

This commit is contained in:
djmaze 2021-11-03 15:08:27 +01:00
parent 2a7348081a
commit a3f096b540
2 changed files with 2 additions and 3 deletions

View file

@ -236,7 +236,6 @@ class AppUser extends AbstractApp {
setFolderHash(FolderUserStore.currentFolderFullNameRaw(), '');
}
this.reloadMessageList(!MessageUserStore.list.length);
this.quotaDebounce();
}
}

View file

@ -861,7 +861,7 @@ class ImapClient extends \MailSo\Net\NetClient
\MailSo\Log\Enumerations\Type::ERROR, true);
}
$this->SendRequestGetResponse($bReturnUid ? 'UID COPY' : 'COPY',
$this->SendRequestGetResponse($bIndexIsUid ? 'UID COPY' : 'COPY',
array($sIndexRange, $this->EscapeString($sToFolder)));
return $this;
}
@ -887,7 +887,7 @@ class ImapClient extends \MailSo\Net\NetClient
\MailSo\Log\Enumerations\Type::ERROR, true);
}
$this->SendRequestGetResponse($bReturnUid ? 'UID MOVE' : 'MOVE',
$this->SendRequestGetResponse($bIndexIsUid ? 'UID MOVE' : 'MOVE',
array($sIndexRange, $this->EscapeString($sToFolder)));
return $this;
}