mirror of
https://github.com/the-djmaze/snappymail.git
synced 2026-06-28 23:05:54 +00:00
Bugfix: quotaDebounce was removed
This commit is contained in:
@@ -236,7 +236,6 @@ class AppUser extends AbstractApp {
|
||||
setFolderHash(FolderUserStore.currentFolderFullNameRaw(), '');
|
||||
}
|
||||
this.reloadMessageList(!MessageUserStore.list.length);
|
||||
this.quotaDebounce();
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user