Merge pull request #10026 from annando/notice-type

Fixes notice: "Undefined index: type"
This commit is contained in:
Hypolite Petovan
2021-03-10 09:56:23 -05:00
committed by GitHub

View File

@@ -101,7 +101,8 @@ class Receiver
$apcontact = APContact::getByURL($actor);
if (empty($apcontact)) {
Logger::notice('Unable to retrieve AP contact for actor', ['actor' => $actor]);
Logger::notice('Unable to retrieve AP contact for actor - message is discarded', ['actor' => $actor]);
return;
} elseif ($apcontact['type'] == 'Application' && $apcontact['nick'] == 'relay') {
self::processRelayPost($ldactivity, $actor);
return;