From 088885070286ccf9f58e97efdd9fba1861a39f17 Mon Sep 17 00:00:00 2001 From: Hypolite Petovan Date: Sun, 24 Feb 2019 13:40:04 -0500 Subject: [PATCH] Fix missing avatar key in DFRN - Addresses https://github.com/friendica/friendica/issues/6338#issuecomment-456839092 --- src/Protocol/DFRN.php | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Protocol/DFRN.php b/src/Protocol/DFRN.php index 39d982bb9..544e77fa8 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) {