diff options
author | Mario <mario@mariovavti.com> | 2022-09-13 11:20:35 +0000 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2022-09-13 11:20:35 +0000 |
commit | 96535ee4df967f04d4cc6c3b7f9ab335a50f543d (patch) | |
tree | 484208b83263850a4914d77e2842c214f488b17b /Zotlabs/Lib/ActivityStreams.php | |
parent | b55f314d7ee1c1cc00f13a8602a56780e1db71ae (diff) | |
download | volse-hubzilla-96535ee4df967f04d4cc6c3b7f9ab335a50f543d.tar.gz volse-hubzilla-96535ee4df967f04d4cc6c3b7f9ab335a50f543d.tar.bz2 volse-hubzilla-96535ee4df967f04d4cc6c3b7f9ab335a50f543d.zip |
make actor_store() fetch the actor object if none is provided, remove announce from the is_response array and provide a function to find the attributedTo url
Diffstat (limited to 'Zotlabs/Lib/ActivityStreams.php')
-rw-r--r-- | Zotlabs/Lib/ActivityStreams.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Zotlabs/Lib/ActivityStreams.php b/Zotlabs/Lib/ActivityStreams.php index fc580e9aa..a07fdacb7 100644 --- a/Zotlabs/Lib/ActivityStreams.php +++ b/Zotlabs/Lib/ActivityStreams.php @@ -294,7 +294,7 @@ class ActivityStreams { if (!$s) { return false; } - return (in_array($s, ['Like', 'Dislike', 'Flag', 'Block', 'Announce', 'Accept', 'Reject', 'TentativeAccept', 'TentativeReject', 'emojiReaction', 'EmojiReaction', 'EmojiReact'])); + return (in_array($s, ['Like', 'Dislike', 'Flag', 'Block', 'Accept', 'Reject', 'TentativeAccept', 'TentativeReject', 'emojiReaction', 'EmojiReaction', 'EmojiReact'])); } /** |