Don't generateETag() on SELECT/EXAMINE

This commit is contained in:
the-djmaze 2023-03-14 09:39:33 +01:00
parent a0a7e93707
commit 6fde436865

View file

@ -412,9 +412,9 @@ trait Folders
$oResult->PermanentFlags = \array_map('\\MailSo\\Base\\Utils::Utf7ModifiedToUtf8', $oResponse->OptionalResponse[1]); $oResult->PermanentFlags = \array_map('\\MailSo\\Base\\Utils::Utf7ModifiedToUtf8', $oResponse->OptionalResponse[1]);
} }
} else if ('READ-ONLY' === $key) { } else if ('READ-ONLY' === $key) {
// $oResult->IsWritable = false; $oResult->IsWritable = false;
} else if ('READ-WRITE' === $key) { } else if ('READ-WRITE' === $key) {
// $oResult->IsWritable = true; $oResult->IsWritable = true;
} else if ('NOMODSEQ' === $key) { } else if ('NOMODSEQ' === $key) {
// https://datatracker.ietf.org/doc/html/rfc4551#section-3.1.2 // https://datatracker.ietf.org/doc/html/rfc4551#section-3.1.2
} }
@ -439,7 +439,6 @@ trait Folders
} }
*/ */
$this->oCurrentFolderInfo = $oResult; $this->oCurrentFolderInfo = $oResult;
$oResult->generateETag($this);
return $oResult; return $oResult;
} }