diff --git a/dev/App/User.js b/dev/App/User.js index 027091547..8044c3adc 100644 --- a/dev/App/User.js +++ b/dev/App/User.js @@ -236,7 +236,6 @@ class AppUser extends AbstractApp { setFolderHash(FolderUserStore.currentFolderFullNameRaw(), ''); } this.reloadMessageList(!MessageUserStore.list.length); - this.quotaDebounce(); } } diff --git a/snappymail/v/0.0.0/app/libraries/MailSo/Imap/ImapClient.php b/snappymail/v/0.0.0/app/libraries/MailSo/Imap/ImapClient.php index 5abf705ae..016fa2289 100644 --- a/snappymail/v/0.0.0/app/libraries/MailSo/Imap/ImapClient.php +++ b/snappymail/v/0.0.0/app/libraries/MailSo/Imap/ImapClient.php @@ -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; }