mirror of
https://github.com/friendica/friendica
synced 2024-11-18 22:23:42 +00:00
Merge pull request #7976 from annando/notice
Fix notice because of a missing subject
This commit is contained in:
commit
c57b2d3821
1 changed files with 1 additions and 1 deletions
|
@ -562,7 +562,7 @@ class OnePoll
|
|||
}
|
||||
|
||||
// Decoding the header
|
||||
$subject = imap_mime_header_decode($meta->subject);
|
||||
$subject = imap_mime_header_decode($meta->subject ?? '');
|
||||
$datarray['title'] = "";
|
||||
foreach ($subject as $subpart) {
|
||||
if ($subpart->charset != "default") {
|
||||
|
|
Loading…
Reference in a new issue