1
0
Fork 0

Merge pull request #3366 from pixelfed/staging

Update AP helpers
This commit is contained in:
daniel 2022-04-06 01:52:17 -06:00 committed by GitHub
commit 16e58ccbd8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 6 additions and 1 deletions

View File

@ -457,9 +457,14 @@ class Helpers {
$ts = self::pluckval($activity['published']);
$scope = self::getScope($activity);
$cw = self::getSensitive($activity);
$pid = is_object($profile) ? $profile->id : (is_array($profile) ? $profile['id'] : null);
if(!$pid) {
return;
}
$status = new Status;
$status->profile_id = $profile->id;
$status->profile_id = $pid;
$status->url = $url;
$status->uri = $url;
$status->object_url = $id;