summaryrefslogtreecommitdiff
path: root/lib/publicqueuehandler.php
diff options
context:
space:
mode:
Diffstat (limited to 'lib/publicqueuehandler.php')
-rw-r--r--lib/publicqueuehandler.php6
1 files changed, 4 insertions, 2 deletions
diff --git a/lib/publicqueuehandler.php b/lib/publicqueuehandler.php
index c9edb8d5d..9ea9ee73a 100644
--- a/lib/publicqueuehandler.php
+++ b/lib/publicqueuehandler.php
@@ -23,6 +23,7 @@ if (!defined('STATUSNET') && !defined('LACONICA')) {
/**
* Queue handler for pushing new notices to public XMPP subscribers.
+ * @fixme correct this exception handling
*/
class PublicQueueHandler extends QueueHandler
{
@@ -32,14 +33,15 @@ class PublicQueueHandler extends QueueHandler
return 'public';
}
- function handle($notice)
+ function handle_notice($notice)
{
require_once(INSTALLDIR.'/lib/jabber.php');
try {
return jabber_public_notice($notice);
} catch (XMPPHP_Exception $e) {
$this->log(LOG_ERR, "Got an XMPPHP_Exception: " . $e->getMessage());
- return false;
+ die($e->getMessage());
}
+ return true;
}
}