From a3f096b5400a7184e885dc643c1e86cd70cdf892 Mon Sep 17 00:00:00 2001 From: djmaze Date: Wed, 3 Nov 2021 15:08:27 +0100 Subject: [PATCH] Bugfix: quotaDebounce was removed --- dev/App/User.js | 1 - snappymail/v/0.0.0/app/libraries/MailSo/Imap/ImapClient.php | 4 ++-- 2 files changed, 2 insertions(+), 3 deletions(-) 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; }