summaryrefslogtreecommitdiff
path: root/scripts/ombqueuehandler.php
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/ombqueuehandler.php')
-rwxr-xr-xscripts/ombqueuehandler.php7
1 files changed, 5 insertions, 2 deletions
diff --git a/scripts/ombqueuehandler.php b/scripts/ombqueuehandler.php
index 36d5d7b9c..28c76db9a 100755
--- a/scripts/ombqueuehandler.php
+++ b/scripts/ombqueuehandler.php
@@ -44,8 +44,11 @@ class OmbQueueHandler extends QueueHandler {
}
function handle_notice($notice) {
- if (!$this->is_remote($notice)) {
- omb_broadcast_remote_subscribers($notice);
+ if ($this->is_remote($notice)) {
+ # It's fine, we're done with it.
+ return true;
+ } else {
+ return omb_broadcast_remote_subscribers($notice);
}
}