diff --git a/classes/Conversation.php b/classes/Conversation.php index 537c214a4c..9ef1e06b76 100644 --- a/classes/Conversation.php +++ b/classes/Conversation.php @@ -110,8 +110,7 @@ class Conversation extends Managed_DataObject { $conv = new Conversation(); $conv->id = $notice->conversation; - $conv->find(true); - if (!$conv instanceof Conversation) { + if (!$conv->find(true)) { common_debug('Conversation does not exist for notice ID: '.$notice->id); throw new NoResultException($conv); }