mirror of
https://github.com/the-djmaze/snappymail.git
synced 2026-08-25 18:19:22 +03:00
Small fixes
This commit is contained in:
parent
fcfd54215a
commit
aeec36de19
7 changed files with 123 additions and 129 deletions
|
|
@ -995,8 +995,13 @@ class ImapClient extends \MailSo\Net\NetClient
|
|||
*/
|
||||
public function FolderUnSelect()
|
||||
{
|
||||
return $this->IsSelected() && $this->IsSupported('UNSELECT') ?
|
||||
$this->SendRequestWithCheck('UNSELECT') : $this;
|
||||
if ($this->IsSelected() && $this->IsSupported('UNSELECT'))
|
||||
{
|
||||
$this->SendRequestWithCheck('UNSELECT');
|
||||
$this->bIsSelected = false;
|
||||
}
|
||||
|
||||
return $this;
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue