index: Don't drop query parameters when redirecting to dashboard
This commit is contained in:
parent
5ca97c14d6
commit
a2e1663e34
|
@ -19,7 +19,7 @@ class IndexController extends ActionController
|
|||
public function preDispatch()
|
||||
{
|
||||
if ($this->getRequest()->getActionName() !== 'welcome') {
|
||||
$this->redirectNow('dashboard');
|
||||
$this->redirectNow(Url::fromRequest()->setPath('dashboard'));
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue