Merge pull request #11753 from Quix0r/fixes/missing-contact-array

Fixed missing $contact array, at least initialize it empty
This commit is contained in:
Hypolite Petovan 2022-07-19 17:58:02 -04:00 committed by GitHub
commit d69ac56338
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -4081,6 +4081,7 @@ class Diaspora
*/
public static function createCommentSignature(array $item)
{
$contact = [];
if (!empty($item['author-link'])) {
$url = $item['author-link'];
} else {
@ -4094,7 +4095,7 @@ class Diaspora
$uid = User::getIdForURL($url);
if (empty($uid)) {
Logger::info('No owner post, so not storing signature', ['url' => $contact['url']]);
Logger::info('No owner post, so not storing signature', ['url' => $contact['url'] ?? 'No contact loaded']);
return false;
}