From: Hypolite Petovan Date: Mon, 26 Dec 2022 14:10:55 +0000 (-0500) Subject: Query expected photo.type field in Protocol\DFRN::relocate X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=e8420dcb7155af7fb8bd29fb63c79367125dd551;p=friendica.git Query expected photo.type field in Protocol\DFRN::relocate - Address first part of https://github.com/friendica/friendica/issues/12488#issuecomment-1364487793 --- diff --git a/src/Protocol/DFRN.php b/src/Protocol/DFRN.php index e29cfcc5ab..52ae12f9c3 100644 --- a/src/Protocol/DFRN.php +++ b/src/Protocol/DFRN.php @@ -301,16 +301,15 @@ class DFRN DI::config()->set('system', 'site_pubkey', $res['pubkey']); } - $profilephotos = Photo::selectToArray(['resource-id' , 'scale'], ['profile' => true, 'uid' => $uid], ['order' => ['scale']]); + $profilephotos = Photo::selectToArray(['resource-id', 'scale', 'type'], ['profile' => true, 'uid' => $uid], ['order' => ['scale']]); $photos = []; $ext = Images::supportedTypes(); foreach ($profilephotos as $p) { - $photos[$p['scale']] = DI::baseUrl().'/photo/'.$p['resource-id'].'-'.$p['scale'].'.'.$ext[$p['type']]; + $photos[$p['scale']] = DI::baseUrl() . '/photo/' . $p['resource-id'] . '-' . $p['scale'] . '.' . $ext[$p['type']]; } - $doc = new DOMDocument('1.0', 'utf-8'); $doc->formatOutput = true;