From: Hypolite Petovan Date: Sun, 24 Feb 2019 18:40:04 +0000 (-0500) Subject: Fix missing avatar key in DFRN X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=088885070286ccf9f58e97efdd9fba1861a39f17;p=friendica.git Fix missing avatar key in DFRN - Addresses https://github.com/friendica/friendica/issues/6338#issuecomment-456839092 --- diff --git a/src/Protocol/DFRN.php b/src/Protocol/DFRN.php index 39d982bb92..544e77fa81 100644 --- a/src/Protocol/DFRN.php +++ b/src/Protocol/DFRN.php @@ -1596,6 +1596,7 @@ class DFRN if (empty($author['avatar'])) { Logger::log('Empty author: ' . $xml); + $author['avatar'] = ''; } if (DBA::isResult($contact_old) && !$onlyfetch) {