Update ApiV1Controller, allow optional mastodonMode on v2/search endpoint

This commit is contained in:
Daniel Supernault 2023-03-04 15:09:45 -07:00
parent e68ec03cea
commit f4a69631a4
No known key found for this signature in database
GPG Key ID: 0DEF1C662C9033F7
1 changed files with 2 additions and 1 deletions

View File

@ -3172,7 +3172,8 @@ class ApiV1Controller extends Controller
'following' => 'nullable'
]);
return $this->json(SearchApiV2Service::query($request, true));
$mastodonMode = !$request->has('_pe');
return $this->json(SearchApiV2Service::query($request, $mastodonMode));
}
/**