diff options
author | friendica <info@friendica.com> | 2013-09-13 04:51:55 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2013-09-13 04:51:55 -0700 |
commit | 83e086edcd4d13b2e8508eb17a24a849c8e3aa06 (patch) | |
tree | d905629111a7d15dab4d4a14a9ece14bc8dad206 /include/notifier.php | |
parent | cf87653a922f3b7f6132a00bb77293ae9e7a66c1 (diff) | |
download | volse-hubzilla-83e086edcd4d13b2e8508eb17a24a849c8e3aa06.tar.gz volse-hubzilla-83e086edcd4d13b2e8508eb17a24a849c8e3aa06.tar.bz2 volse-hubzilla-83e086edcd4d13b2e8508eb17a24a849c8e3aa06.zip |
doc update, put more telemetry on notifier and try to ensure that private posts have recipients.
Diffstat (limited to 'include/notifier.php')
-rw-r--r-- | include/notifier.php | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/notifier.php b/include/notifier.php index e813f7951..e1f150bf2 100644 --- a/include/notifier.php +++ b/include/notifier.php @@ -372,6 +372,10 @@ function notifier_run($argv, $argc){ } } + if(($private) && (! $env_recips)) { + // shouldn't happen + logger('notifier: private message with no envelope recipients.' . print_r($argv,true)); + } logger('notifier: recipients (may be delivered to more if public): ' . print_r($recip_list,true), LOGGER_DEBUG); |