From 2879f0a499297b64ac56d78fcb67650cbedce54f Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Fri, 4 May 2012 22:57:20 -0400 Subject: [PATCH] Just let a UserNoProfileException pass. --- lib/pluginqueuehandler.php | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/lib/pluginqueuehandler.php b/lib/pluginqueuehandler.php index 9653ccad42..c2d74f4840 100644 --- a/lib/pluginqueuehandler.php +++ b/lib/pluginqueuehandler.php @@ -44,7 +44,12 @@ class PluginQueueHandler extends QueueHandler function handle($notice) { - Event::handle('HandleQueuedNotice', array(&$notice)); + try { + Event::handle('HandleQueuedNotice', array(&$notice)); + } catch (UserNoProfileException $unp) { + // We can't do anything about this, so just skip + return true; + } return true; } } -- 2.39.5