X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=src%2FModule%2FProfile%2FIndex.php;h=7a009739e4743b3983203a946be2ed7db416a4f6;hb=c81a9d1ddd7e5b7fff6a173a159ae78ee7fc7698;hp=149d165129a218d0169079af583e4b5fd960e97d;hpb=360614d2cf3aceeb763ef1281ad5236878f5d735;p=friendica.git diff --git a/src/Module/Profile/Index.php b/src/Module/Profile/Index.php index 149d165129..7a009739e4 100644 --- a/src/Module/Profile/Index.php +++ b/src/Module/Profile/Index.php @@ -42,7 +42,7 @@ use Psr\Log\LoggerInterface; * ActivityPub endpoint, but it should show statuses to web users. * * Both these view have dedicated sub-paths, - * respectively https://domain.tld/profile/nickname/profile and https://domain.tld/profile/nickname/status + * respectively https://domain.tld/profile/nickname/profile and https://domain.tld/profile/nickname/conversations */ class Index extends BaseModule { @@ -90,6 +90,6 @@ class Index extends BaseModule protected function content(array $request = []): string { - return (new Status($this->mode, $this->pConfig, $this->conversation, $this->session, $this->config, $this->dateTimeFormat, $this->page, $this->app, $this->l10n, $this->baseUrl, $this->args, $this->logger, $this->profiler, $this->response, $this->server, $this->parameters))->content(); + return (new Conversations($this->mode, $this->pConfig, $this->conversation, $this->session, $this->config, $this->dateTimeFormat, $this->page, $this->app, $this->l10n, $this->baseUrl, $this->args, $this->logger, $this->profiler, $this->response, $this->server, $this->parameters))->content(); } }