mirror of
https://github.com/the-djmaze/snappymail.git
synced 2025-02-25 07:16:21 +08:00
Bugfix for issue #170
This commit is contained in:
parent
98b3fa9632
commit
119f22ae61
1 changed files with 2 additions and 2 deletions
|
@ -509,7 +509,7 @@ trait Messages
|
||||||
}
|
}
|
||||||
catch (\Throwable $oException)
|
catch (\Throwable $oException)
|
||||||
{
|
{
|
||||||
\SnappyMail\LOG::warning("FolderHash({$sFolder}) Exception: {$oException->getMessage()}");
|
\SnappyMail\LOG::warning('IMAP', "FolderHash({$sFolder}) Exception: {$oException->getMessage()}");
|
||||||
}
|
}
|
||||||
|
|
||||||
return $this->DefaultResponse(__FUNCTION__, $sHash ? array($sFolder, $sHash) : array($sFromFolder));
|
return $this->DefaultResponse(__FUNCTION__, $sHash ? array($sFolder, $sHash) : array($sFromFolder));
|
||||||
|
@ -572,7 +572,7 @@ trait Messages
|
||||||
}
|
}
|
||||||
catch (\Throwable $oException)
|
catch (\Throwable $oException)
|
||||||
{
|
{
|
||||||
\SnappyMail\LOG::warning("FolderHash({$sFromFolder}) Exception: {$oException->getMessage()}");
|
\SnappyMail\LOG::warning('IMAP', "FolderHash({$sFromFolder}) Exception: {$oException->getMessage()}");
|
||||||
}
|
}
|
||||||
|
|
||||||
return $this->DefaultResponse(__FUNCTION__, $sHash ? array($sFromFolder, $sHash) : array($sFromFolder));
|
return $this->DefaultResponse(__FUNCTION__, $sHash ? array($sFromFolder, $sHash) : array($sFromFolder));
|
||||||
|
|
Loading…
Reference in a new issue