Fix paging on media pages

This commit is contained in:
Michael 2024-06-15 09:04:36 +00:00
parent e9421d7eb6
commit 47ab246441
3 changed files with 12 additions and 11 deletions

View file

@ -64,7 +64,7 @@ class Media extends BaseProfile
$o = self::getTabsHTML('media', $is_owner, $profile['nickname'], $profile['hide-friends']);
$o .= Contact::getPostsFromUrl($profile['url'], $this->userSession->getLocalUserId(), true);
$o .= Contact::getPostsFromUrl($profile['url'], $this->userSession->getLocalUserId(), true, $request['last_created'] ?? '');
return $o;
}