Merge pull request #5952 from annando/ap-fixes

AP: Fix a notice / avoid an error when fetched content hadn't been an array
This commit is contained in:
Tobias Diekershoff 2018-10-18 08:02:27 +02:00 committed by GitHub
commit e2f005f68c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 8 additions and 2 deletions

View File

@ -63,7 +63,13 @@ class ActivityPub
return false;
}
return json_decode($curlResult->getBody(), true);
$content = json_decode($curlResult->getBody(), true);
if (empty($content) || !is_array($content)) {
return false;
}
return $content;
}
/**

View File

@ -272,7 +272,7 @@ class Processor
$activity['cc'] = defaults($object, 'cc', []);
$activity['actor'] = $child['author'];
$activity['object'] = $object;
$activity['published'] = $object['published'];
$activity['published'] = defaults($object, 'published', $child['published']);
$activity['type'] = 'Create';
$ldactivity = JsonLD::compact($activity);