mirror of
https://github.com/the-djmaze/snappymail.git
synced 2026-09-07 16:37:02 +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);
|
$aRequestHash = \explode('-', $sHash);
|
||||||
$sFolderHash = $oInfo->getHash($this->ImapClient()->Hash());
|
$sFolderHash = $oInfo->getHash($this->ImapClient()->Hash());
|
||||||
$sHash = $oParams->hash() . '-' . $sFolderHash;
|
$sHash = $oParams->hash() . '-' . $sFolderHash;
|
||||||
if ($aRequestHash[0] == $sFolderHash) {
|
if ($aRequestHash[1] == $sFolderHash) {
|
||||||
$this->verifyCacheByKey($sHash);
|
$this->verifyCacheByKey($sHash);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue