mirror of
https://github.com/the-djmaze/snappymail.git
synced 2026-09-08 08:57:03 +03: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';
|
$sCmd = 'EXPUNGE';
|
||||||
$aArguments = array();
|
$aArguments = array();
|
||||||
|
|
||||||
if ($oUidRange && \count($oUidRange) && $oRange->UID && $this->IsSupported('UIDPLUS')) {
|
if ($oUidRange && \count($oUidRange) && $oUidRange->UID && $this->IsSupported('UIDPLUS')) {
|
||||||
$sCmd = 'UID '.$sCmd;
|
$sCmd = 'UID '.$sCmd;
|
||||||
$aArguments = array((string) $oUidRange);
|
$aArguments = array((string) $oUidRange);
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue