Merge pull request #9056 from annando/ap-follow

ActivityPub accounts don't need a "poll" endpoint
This commit is contained in:
Hypolite Petovan 2020-08-23 06:43:00 -04:00 committed by GitHub
commit b52070aa2f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -2088,7 +2088,7 @@ class Contact
}
// do we have enough information?
if (empty($ret['name']) || empty($ret['poll']) || (empty($ret['url']) && empty($ret['addr']))) {
if (empty($protocol) || ($protocol == Protocol::PHANTOM) || (empty($ret['url']) && empty($ret['addr']))) {
$result['message'] .= DI::l10n()->t('The profile address specified does not provide adequate information.') . EOL;
if (empty($ret['poll'])) {
$result['message'] .= DI::l10n()->t('No compatible communication protocols or feeds were discovered.') . EOL;