mirror of
https://github.com/the-djmaze/snappymail.git
synced 2025-01-07 15:27:43 +08:00
Bugfix $oRange should be $oUidRange in FolderExpunge
This commit is contained in:
parent
a228f81ece
commit
55160a5152
1 changed files with 1 additions and 1 deletions
|
@ -910,7 +910,7 @@ class ImapClient extends \MailSo\Net\NetClient
|
|||
$sCmd = 'EXPUNGE';
|
||||
$aArguments = array();
|
||||
|
||||
if ($oUidRange && \count($oUidRange) && $oRange->UID && $this->IsSupported('UIDPLUS')) {
|
||||
if ($oUidRange && \count($oUidRange) && $oUidRange->UID && $this->IsSupported('UIDPLUS')) {
|
||||
$sCmd = 'UID '.$sCmd;
|
||||
$aArguments = array((string) $oUidRange);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue