Correct content type

This commit is contained in:
Michael 2018-09-30 14:13:07 +00:00
parent a8b776c189
commit 761bdafa34
2 changed files with 3 additions and 1 deletions

View file

@ -834,8 +834,9 @@ class ActivityPub
{
$ret = Network::curl($url, false, $redirects, ['accept_content' => 'application/activity+json, application/ld+json']);
if (!$ret['success'] || empty($ret['body'])) {
return;
return false;
}
return json_decode($ret['body'], true);
}