1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-19 16:01:34 +02:00

Fix client redirect

This commit is contained in:
Hillel Coren 2020-03-29 09:28:30 +03:00
parent 5a33c42278
commit ca6e981f29

View File

@ -68,7 +68,7 @@ class Authenticate
Session::put('contact_key', $contact->contact_key);
}
if (! $contact) {
return \Redirect::to('client/session_expired');
return \Redirect::to('client/login');
}
$account = $contact->account;