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 <ChristophWurst@users.noreply.github.com>2021-02-19 10:28:10 +0300
committerGitHub <noreply@github.com>2021-02-19 10:28:10 +0300
commit324ddd3e0b4cce10da8f31172b91349170d214e9 (patch)
treeb47df19d009e214ded86d95e53f7491a64238e45 /lib/IMAP
parent1ca1191f784516cdaa1950c80bddcdae3e2ba97a (diff)
parentd03f30e7f0b91e2544ee7bd6316a7fe1ae3191f9 (diff)
Merge pull request #4534 from nextcloud/fix/avoid-horde-header-query
Avoid usage of Horde header query as it causes issues with php8
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 43b0ec096..95161fd8a 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,