Skip to content

Commit

Permalink
Bugfix: DoMessageList() hash check was incorrect
Browse files Browse the repository at this point in the history
  • Loading branch information
the-djmaze committed Feb 16, 2023
1 parent 38c4b4e commit 90d039b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ public function DoMessageList() : array
$aRequestHash = \explode('-', $sHash);
$sFolderHash = $oInfo->getHash($this->ImapClient()->Hash());
$sHash = $oParams->hash() . '-' . $sFolderHash;
if ($aRequestHash[0] == $sFolderHash) {
if ($aRequestHash[1] == $sFolderHash) {
$this->verifyCacheByKey($sHash);
}
}
Expand Down

0 comments on commit 90d039b

Please sign in to comment.