diff options
author | Mario <mario@mariovavti.com> | 2024-03-01 15:47:40 +0000 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2024-03-01 15:47:40 +0000 |
commit | af839a05892f9446e86327ba04787b3a697c379c (patch) | |
tree | d43beb840eddba59312784ab261cc5a6843e8e05 /Zotlabs/Daemon | |
parent | 4bbeb224f67848cbdd4b07ed4f90341e0a6460c9 (diff) | |
download | volse-hubzilla-af839a05892f9446e86327ba04787b3a697c379c.tar.gz volse-hubzilla-af839a05892f9446e86327ba04787b3a697c379c.tar.bz2 volse-hubzilla-af839a05892f9446e86327ba04787b3a697c379c.zip |
AS2 Follow/Ignore
Diffstat (limited to 'Zotlabs/Daemon')
-rw-r--r-- | Zotlabs/Daemon/Notifier.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Zotlabs/Daemon/Notifier.php b/Zotlabs/Daemon/Notifier.php index 948aba80c..4e7ca3911 100644 --- a/Zotlabs/Daemon/Notifier.php +++ b/Zotlabs/Daemon/Notifier.php @@ -276,7 +276,7 @@ class Notifier { } // follow/unfollow is for internal use only - if (in_array($target_item['verb'], [ACTIVITY_FOLLOW, ACTIVITY_UNFOLLOW])) { + if (in_array($target_item['verb'], ['Follow', 'Ignore', ACTIVITY_FOLLOW, ACTIVITY_UNFOLLOW])) { logger('not fowarding follow/unfollow note activity'); return; } |