]> git.mxchange.org Git - quix0rs-gnu-social.git/blobdiff - lib/noticestream.php
Move prefill call to noticelist class
[quix0rs-gnu-social.git] / lib / noticestream.php
index 010bfab60e4221d4dc67d3f9c0d939a25414aeb4..e9ff47b68c154eb73641cbaf97dbb1b0126c2cae 100644 (file)
@@ -59,9 +59,6 @@ abstract class NoticeStream
 
     static function getStreamByIds($ids)
     {
-       $notices = Notice::multiGet('id', $ids);
-       // Prefill the profiles
-       Notice::fillProfiles($notices->fetchAll());
-       return $notices;
+       return Notice::multiGet('id', $ids);
     }
 }