mirror of
https://github.com/the-djmaze/snappymail.git
synced 2026-09-08 00:47:04 +03:00
Bugfix: ParseFromStreamRecursion return value must be of type MailSo\Mime\Part, bool returned
This commit is contained in:
parent
0ed7f000d6
commit
e0238e9966
1 changed files with 2 additions and 2 deletions
|
|
@ -426,7 +426,7 @@ class Part
|
||||||
}
|
}
|
||||||
|
|
||||||
$oCallbackClass->EndParseMimePart($this);
|
$oCallbackClass->EndParseMimePart($this);
|
||||||
return true;
|
return $this;
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
|
@ -492,7 +492,7 @@ class Part
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
$oCallbackClass->EndParseMimePart($this);
|
$oCallbackClass->EndParseMimePart($this);
|
||||||
return true;
|
return $this;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue