Fix Notice typo and follow request system

This commit is contained in:
Diogo Cordeiro 2018-07-31 20:25:47 +01:00
parent f77bad0159
commit d90fabd15e
2 changed files with 4 additions and 8 deletions

View File

@ -77,7 +77,7 @@ class Activitypub_notice extends Managed_DataObject
'type' => 'Note',
'published' => str_replace(' ', 'T', $notice->getCreated()).'Z',
'url' => $notice->getUrl(),
'atributedTo' => ActivityPubPlugin::actor_uri($profile),
'atributtedTo' => ActivityPubPlugin::actor_uri($profile),
'to' => $to,
'cc' => common_local_url('apActorFollowers', ['id' => $profile->getID()]),
'atomUri' => $notice->getUrl(),

View File

@ -118,17 +118,13 @@ class Activitypub_postman
if ($res->getStatusCode() == 200 || $res->getStatusCode() == 409) {
$pending_list = new Activitypub_pending_follow_requests($this->actor->getID(), $this->to[0]->getID());
if (! ($res->getStatusCode() == 409 || $res_body->type == "Accept")) {
$pending_list->add();
throw new Exception("Your follow request is pending acceptation.");
}
$pending_list->remove();
$pending_list->add();
return true;
} elseif (isset($res_body[0]->error)) {
throw new Exception($res_body[0]->error);
} else {
throw new Exception("An unknown error occurred.");
}
throw new Exception("An unknown error occurred.");
}
/**