[ActivityPub] Fix undefined tag index 'type' in Activitypub_notice
This commit is contained in:
parent
0204ffb1fa
commit
4a90f281ed
|
@ -187,7 +187,7 @@ class Activitypub_notice
|
|||
$mentions = [];
|
||||
if (isset($object['tag']) && is_array($object['tag'])) {
|
||||
foreach ($object['tag'] as $tag) {
|
||||
if ($tag['type'] == 'Mention') {
|
||||
if (array_key_exists('type', $tag) && $tag['type'] == 'Mention') {
|
||||
$mentions[] = $tag['href'];
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue
Block a user