mirror of
https://github.com/the-djmaze/snappymail.git
synced 2025-01-04 14:02:17 +08:00
Bugfix: Undefined variable: sParentFolderName
This commit is contained in:
parent
d09f4cd14a
commit
18e2049cf2
1 changed files with 1 additions and 1 deletions
|
@ -577,7 +577,7 @@ class ImapClient extends \MailSo\Net\NetClient
|
|||
*/
|
||||
public function FolderHierarchyDelimiter(string $sFolderName = '') : ?string
|
||||
{
|
||||
$oResponse = $this->SendRequestGetResponse('LIST', ['""', $this->EscapeString($sParentFolderName)]);
|
||||
$oResponse = $this->SendRequestGetResponse('LIST', ['""', $this->EscapeString($sFolderName)]);
|
||||
return ('LIST' === $oResponse[0]->ResponseList[1]) ? $oResponse[0]->ResponseList[3] : null;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue