diff options
author | Mario <mario@mariovavti.com> | 2020-10-09 12:03:33 +0000 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2020-10-09 12:03:33 +0000 |
commit | 67533ee47871df2871fb1e2bf58101e278f791d6 (patch) | |
tree | f6c09118e837f0003d36b4a58f72b57ed34b33c6 /Zotlabs | |
parent | 3acd5dcc07f74640734b8b5a837354859dd5a213 (diff) | |
download | volse-hubzilla-67533ee47871df2871fb1e2bf58101e278f791d6.tar.gz volse-hubzilla-67533ee47871df2871fb1e2bf58101e278f791d6.tar.bz2 volse-hubzilla-67533ee47871df2871fb1e2bf58101e278f791d6.zip |
add rss network authors to the not fetchable list
Diffstat (limited to 'Zotlabs')
-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 b605fe96e..a29fc6101 100644 --- a/Zotlabs/Daemon/Notifier.php +++ b/Zotlabs/Daemon/Notifier.php @@ -295,7 +295,7 @@ class Notifier { $target_item = $r[0]; - if($target_item['author']['xchan_network'] === 'anon') { + if(in_array($target_item['author']['xchan_network'], ['rss', 'anon'])) { logger('notifier: target item author is not a fetchable actor', LOGGER_DEBUG); return; } |