[ActivityPub] Fix notice creation

Activitypub_notice:
- Perform url test, use id when missing.
This commit is contained in:
brunoccast 2019-08-04 02:03:30 +01:00 committed by Diogo Cordeiro
parent 883621ba34
commit 14a45dc546
1 changed files with 3 additions and 3 deletions

View File

@ -115,9 +115,9 @@ class Activitypub_notice extends Managed_DataObject
*/
public static function create_notice($object, $actor_profile = null)
{
$id = $object['id']; // int
$url = $object['url']; // string
$content = $object['content']; // string
$id = $object['id']; // int
$url = isset($object['url']) ? $object['url'] : $id; // string
$content = $object['content']; // string
// possible keys: ['inReplyTo', 'latitude', 'longitude']
$settings = [];