From e0238e99667f59d413508df292a452d4884c37bd Mon Sep 17 00:00:00 2001 From: the-djmaze <> Date: Tue, 25 Jan 2022 19:57:43 +0100 Subject: [PATCH] Bugfix: ParseFromStreamRecursion return value must be of type MailSo\Mime\Part, bool returned --- snappymail/v/0.0.0/app/libraries/MailSo/Mime/Part.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/snappymail/v/0.0.0/app/libraries/MailSo/Mime/Part.php b/snappymail/v/0.0.0/app/libraries/MailSo/Mime/Part.php index 9c3133eef..aaa86ec72 100644 --- a/snappymail/v/0.0.0/app/libraries/MailSo/Mime/Part.php +++ b/snappymail/v/0.0.0/app/libraries/MailSo/Mime/Part.php @@ -426,7 +426,7 @@ class Part } $oCallbackClass->EndParseMimePart($this); - return true; + return $this; } else { @@ -492,7 +492,7 @@ class Part else { $oCallbackClass->EndParseMimePart($this); - return true; + return $this; } } }