mirror of
https://github.com/friendica/friendica
synced 2024-11-12 22:22:54 +00:00
Fix: "Undefined property: stdClass::$personal"
This commit is contained in:
parent
6e0118f3fe
commit
642c55ee3e
1 changed files with 2 additions and 2 deletions
|
@ -2001,7 +2001,7 @@ class Probe
|
|||
foreach ($adr as $feadr) {
|
||||
if ((strcasecmp($feadr->mailbox, $data['name']) == 0)
|
||||
&& (strcasecmp($feadr->host, $phost) == 0)
|
||||
&& (strlen($feadr->personal))
|
||||
&& !empty($feadr->personal)
|
||||
) {
|
||||
$personal = imap_mime_header_decode($feadr->personal);
|
||||
$data['name'] = '';
|
||||
|
|
Loading…
Reference in a new issue