mirror of
https://github.com/pixelfed/pixelfed.git
synced 2025-01-11 14:40:46 +00:00
Update AP Helpers, fixes #3290
This commit is contained in:
parent
b78bff72db
commit
539752067f
1 changed files with 1 additions and 1 deletions
|
@ -629,7 +629,7 @@ class Helpers {
|
|||
$profile->bio = isset($res['summary']) ? Purify::clean($res['summary']) : null;
|
||||
$profile->sharedInbox = isset($res['endpoints']) && isset($res['endpoints']['sharedInbox']) ? $res['endpoints']['sharedInbox'] : null;
|
||||
$profile->inbox_url = $res['inbox'];
|
||||
$profile->outbox_url = $res['outbox'];
|
||||
$profile->outbox_url = isset($res['outbox']) ? $res['outbox'] : null;
|
||||
$profile->remote_url = $res['id'];
|
||||
$profile->public_key = $res['publicKey']['publicKeyPem'];
|
||||
$profile->key_id = $res['publicKey']['id'];
|
||||
|
|
Loading…
Reference in a new issue