Explorar el Código

Update LandingController, fix config_cache api check

Daniel Supernault hace 2 años
padre
commit
db2da84bec
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      app/Http/Controllers/LandingController.php

+ 1 - 1
app/Http/Controllers/LandingController.php

@@ -33,7 +33,7 @@ class LandingController extends Controller
 
     public function getDirectoryApi(Request $request)
     {
-    	abort_if(config('instance.landing.show_directory') == false, 404);
+    	abort_if(config_cache('instance.landing.show_directory') == false, 404);
 
     	return DirectoryProfile::collection(
     		Profile::whereNull('domain')