]> git.mxchange.org Git - quix0rs-gnu-social.git/blobdiff - lib/pluginqueuehandler.php
Managed_DataObject now has listGet for all classes
[quix0rs-gnu-social.git] / lib / pluginqueuehandler.php
index 9653ccad42454f3896a34c26e5d49ae53e3adda9..c2d74f48404b152ca4fea338d2693e32908a0644 100644 (file)
@@ -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;
     }
 }