forked from friendica/friendica-addons
Activate ActivityPub for Mastodon Custom Emojis
This commit is contained in:
parent
1dc7114bae
commit
ee13b836d8
|
@ -54,8 +54,8 @@ HTML;
|
||||||
|
|
||||||
function mastodoncustomemojis_put_item_in_cache(App $a, array &$hook_data)
|
function mastodoncustomemojis_put_item_in_cache(App $a, array &$hook_data)
|
||||||
{
|
{
|
||||||
// Mastodon uses OStatus, skipping other network protocols
|
// Mastodon uses OStatus and ActivityPub, skipping other network protocols
|
||||||
if (empty($hook_data['item']['author-link']) || ($hook_data['item']['network'] != Protocol::OSTATUS)) {
|
if (empty($hook_data['item']['author-link']) || !in_array($hook_data['item']['network'], [Protocol::OSTATUS, Protocol::ACTIVITYPUB])) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue