From: Brion Vibber Date: Wed, 25 Nov 2009 23:21:51 +0000 (-0800) Subject: Catch and report exceptions from notice_to_omb_notice() instead of letting the OMB... X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=11abd4bfb70179faad3b4b0509b68403ddfc1ed9;p=quix0rs-gnu-social.git Catch and report exceptions from notice_to_omb_notice() instead of letting the OMB queue handler die. --- diff --git a/lib/omb.php b/lib/omb.php index 49496b774e..e2a6d9f3f5 100644 --- a/lib/omb.php +++ b/lib/omb.php @@ -67,7 +67,14 @@ function omb_hmac_sha1() function omb_broadcast_notice($notice) { - $omb_notice = notice_to_omb_notice($notice); + try { + $omb_notice = notice_to_omb_notice($notice); + } catch (Exception $e) { + // @fixme we should clean up or highlight the problem item + common_log(LOG_ERR, 'Invalid OMB outgoing notice for notice ' . $notice->id); + common_log(LOG_ERR, 'Error status '.$e); + return true; + } /* Get remote users subscribed to this profile. */ $rp = new Remote_profile();