diff options
author | zotlabs <mike@macgirvin.com> | 2017-06-20 12:45:05 -0700 |
---|---|---|
committer | zotlabs <mike@macgirvin.com> | 2017-06-20 12:45:05 -0700 |
commit | 07a8151ae66f1ccf00017f521219afdc2f5370ec (patch) | |
tree | b1cc2061bd2409d8f66e7401171d03f4a068d2ef /Zotlabs/Daemon/Notifier.php | |
parent | 1b31c9f8a875db70154b8512b1e2f96f0a6731cd (diff) | |
download | volse-hubzilla-07a8151ae66f1ccf00017f521219afdc2f5370ec.tar.gz volse-hubzilla-07a8151ae66f1ccf00017f521219afdc2f5370ec.tar.bz2 volse-hubzilla-07a8151ae66f1ccf00017f521219afdc2f5370ec.zip |
more anon comment fixes
Diffstat (limited to 'Zotlabs/Daemon/Notifier.php')
-rw-r--r-- | Zotlabs/Daemon/Notifier.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Zotlabs/Daemon/Notifier.php b/Zotlabs/Daemon/Notifier.php index 0e7284793..20dd96ddd 100644 --- a/Zotlabs/Daemon/Notifier.php +++ b/Zotlabs/Daemon/Notifier.php @@ -268,7 +268,8 @@ class Notifier { // Check for non published items, but allow an exclusion for transmitting hidden file activities - if(intval($target_item['item_unpublished']) || intval($target_item['item_delayed']) || + if(intval($target_item['item_unpublished']) || intval($target_item['item_delayed']) || + intval($target_item['item_blocked']) || ( intval($target_item['item_hidden']) && ($target_item['obj_type'] !== ACTIVITY_OBJ_FILE))) { logger('notifier: target item not published, so not forwardable', LOGGER_DEBUG); return; |