Fix uddate issues and improve speed when displaying contact posts

This commit is contained in:
Michael 2023-12-14 04:58:43 +00:00
parent 747a15f0e0
commit f81192b4c3
8 changed files with 135 additions and 75 deletions

View file

@ -99,7 +99,7 @@ class Posts extends BaseModule
$o = Contact::getTabsHTML($contact, Contact::TAB_POSTS);
$o .= Model\Contact::getPostsFromId($contact['id']);
$o .= Model\Contact::getPostsFromId($contact['id'], $this->userSession->getLocalUserId(), false, $request['last_received'] ?? '');
return $o;
}