Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/mail.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/lib/IMAP
diff options
context:
space:
mode:
authorChristoph Wurst <christoph@winzerhof-wurst.at>2021-02-17 12:02:40 +0300
committerChristoph Wurst <christoph@winzerhof-wurst.at>2021-02-18 17:50:44 +0300
commitd03f30e7f0b91e2544ee7bd6316a7fe1ae3191f9 (patch)
tree61f6c93c5a7e7412fdc9e5e9b3994033808a6e1f /lib/IMAP
parent194bb01e706b2e4f716837ab3a262dea0e9dfef0 (diff)
Avoid usage of Horde header query as it causes issues with php8
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
Diffstat (limited to 'lib/IMAP')
-rw-r--r--lib/IMAP/MessageMapper.php6
1 files changed, 1 insertions, 5 deletions
diff --git a/lib/IMAP/MessageMapper.php b/lib/IMAP/MessageMapper.php
index 96fdb2255..b5a7fe6d5 100644
--- a/lib/IMAP/MessageMapper.php
+++ b/lib/IMAP/MessageMapper.php
@@ -201,11 +201,7 @@ class MessageMapper {
$query->flags();
$query->uid();
$query->imapDate();
- $query->headers(
- 'references',
- [
- 'references',
- ],
+ $query->headerText(
[
'cache' => true,
'peek' => true,