Skip to content

Commit

Permalink
Fix quick search
Browse files Browse the repository at this point in the history
  • Loading branch information
nanaya committed Aug 14, 2023
1 parent 5998b93 commit 7bca597
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/Http/Controllers/HomeController.php
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ public function opensearch()

public function quickSearch()
{
$quickSearch = new QuickSearch(request(), ['user' => auth()->user()]);
$quickSearch = new QuickSearch(Request::all(), ['user' => auth()->user()]);
$searches = $quickSearch->searches();

$result = [];
Expand Down

0 comments on commit 7bca597

Please sign in to comment.