]> git.mxchange.org Git - quix0rs-gnu-social.git/blobdiff - lib/replynoticestream.php
Type-hint is array here.
[quix0rs-gnu-social.git] / lib / replynoticestream.php
index 9373854f17a1df03d22962c27038329b4f13af5c..9fea5cac1e5accdc62a77b65526d468c2ae7d8ea 100644 (file)
@@ -104,15 +104,11 @@ class RawReplyNoticeStream extends NoticeStream
 
         $ids = array();
 
-        try {
         if ($reply->find()) {
             while ($reply->fetch()) {
                 $ids[] = $reply->notice_id;
             }
         }
-} catch (Exception $e) {
-    common_debug('MMNDEBUG: '.$e->getMessage().' on '.var_export($reply, true));
-}
 
         return $ids;
     }