mirror of
https://github.com/friendica/friendica
synced 2024-11-09 17:02:54 +00:00
Fixed detection for empty server data in apcontact (#13791)
This commit is contained in:
parent
4e7f0f9f04
commit
bf80001c80
1 changed files with 1 additions and 1 deletions
|
@ -295,7 +295,7 @@ class ActivityPub
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (empty($apcontact['gsid'] || empty($apcontact['baseurl']))) {
|
if (empty($apcontact['gsid']) || empty($apcontact['baseurl'])) {
|
||||||
Logger::debug('No server found', ['uid' => $uid, 'signer' => $signer, 'called_by' => $called_by]);
|
Logger::debug('No server found', ['uid' => $uid, 'signer' => $signer, 'called_by' => $called_by]);
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue