mirror of
https://github.com/the-djmaze/snappymail.git
synced 2026-08-29 20:19:22 +03:00
Bugfix: DoMessageList() hash check was incorrect
This commit is contained in:
parent
38c4b4e26e
commit
90d039b36b
1 changed files with 1 additions and 1 deletions
|
|
@ -66,7 +66,7 @@ trait Messages
|
|||
$aRequestHash = \explode('-', $sHash);
|
||||
$sFolderHash = $oInfo->getHash($this->ImapClient()->Hash());
|
||||
$sHash = $oParams->hash() . '-' . $sFolderHash;
|
||||
if ($aRequestHash[0] == $sFolderHash) {
|
||||
if ($aRequestHash[1] == $sFolderHash) {
|
||||
$this->verifyCacheByKey($sHash);
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue