[DirectMessage] Update inboxMessages() to stop fetching replies

This is yet to be supported in the plugin.
This commit is contained in:
t3nma 2020-07-28 05:48:43 +01:00
parent 99183ce4e2
commit 83df8848c8
1 changed files with 2 additions and 12 deletions

View File

@ -72,24 +72,14 @@ class MessageModel
*/
public static function inboxMessages(User $to, ?int $page = null)
{
// fetch all notice IDs related to the user $to
$attention = new Attention();
$attention->selectAdd('notice_id');
$attention->whereAdd('profile_id = ' . $to->getID());
$ids = $attention->find() ? $attention->fetchAll('notice_id') : [];
$reply = new Reply();
$reply->selectAdd('notice_id');
$reply->whereAdd('profile_id = ' . $to->getID());
if ($reply->find()) {
$ids = array_unique(
array_merge($ids, $reply->fetchAll('notice_id'))
);
} else if (empty($ids)) {
return null;
}
// get the messages
$message = new Notice();
$message->whereAdd('scope = ' . NOTICE::MESSAGE_SCOPE);