fixed too many redirects

This commit is contained in:
denisdulici 2017-10-23 10:16:11 +03:00
parent d9604ef5c1
commit dabf76a14a

View File

@ -16,7 +16,7 @@ class CanInstall
public function handle($request, Closure $next)
{
// Check if app is installed
if (env('APP_INSTALLED', true) == false) {
if (env('APP_INSTALLED', false) == false) {
return $next($request);
}