summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--lib/jabber.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/jabber.php b/lib/jabber.php
index 01ec8da43..1202aa322 100644
--- a/lib/jabber.php
+++ b/lib/jabber.php
@@ -271,8 +271,9 @@ function jabber_broadcast_notice($notice) {
$public = common_config('xmpp', 'public');
# FIXME PRIV don't send out private messages here
+ # XXX: should we send out non-local messages if public,localonly = false? I think not
- if ($public) {
+ if ($public && $notice->is_local) {
foreach ($public as $address) {
common_log(LOG_INFO,
'Sending notice ' . $notice->id . ' to public listener ' . $address,