Skip to content

Commit

Permalink
Reindex url error fix
Browse files Browse the repository at this point in the history
  • Loading branch information
royduin committed Nov 17, 2022
1 parent 63f9274 commit fbe1f32
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion routes/api.php
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
Route::match(['get', 'post'], 'index/products', function (Request $request) {
fastcgi_finish_request();
Artisan::call('rapidez:index', [
'store' => $request->store,
'store' => $request->store ?: false,
]);
});
});
Expand Down

0 comments on commit fbe1f32

Please sign in to comment.