From a3312aed705e2ddfe59cd3c6da2b2ca359eb5f70 Mon Sep 17 00:00:00 2001 From: djmaze <> Date: Fri, 7 Jan 2022 14:22:30 +0100 Subject: [PATCH] Bugfix: i broke the ImapClient Fetch callbacks --- .../v/0.0.0/app/libraries/MailSo/Imap/Commands/Messages.php | 1 + 1 file changed, 1 insertion(+) diff --git a/snappymail/v/0.0.0/app/libraries/MailSo/Imap/Commands/Messages.php b/snappymail/v/0.0.0/app/libraries/MailSo/Imap/Commands/Messages.php index c50400282..e4e569645 100644 --- a/snappymail/v/0.0.0/app/libraries/MailSo/Imap/Commands/Messages.php +++ b/snappymail/v/0.0.0/app/libraries/MailSo/Imap/Commands/Messages.php @@ -72,6 +72,7 @@ trait Messages } else if (\is_array($mFetchKey) && 2 === \count($mFetchKey) && \is_string($mFetchKey[0]) && \is_callable($mFetchKey[1])) { + $aFetchItems[] = $mFetchKey[0]; $this->aFetchCallbacks[$mFetchKey[0]] = $mFetchKey[1]; } break;