diff options
Diffstat (limited to 'scripts/ombqueuehandler.php')
-rwxr-xr-x | scripts/ombqueuehandler.php | 7 |
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); } } |