From c407b52bbfd609de3d121480d0988dda76d9b72c Mon Sep 17 00:00:00 2001 From: snipe Date: Sat, 12 Jun 2021 00:23:30 -0700 Subject: [PATCH] Updated Cors Signed-off-by: snipe --- app/Http/Kernel.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Http/Kernel.php b/app/Http/Kernel.php index da50b9c8bd..dc698142ce 100644 --- a/app/Http/Kernel.php +++ b/app/Http/Kernel.php @@ -43,7 +43,7 @@ class Kernel extends HttpKernel ], 'api' => [ - \Barryvdh\Cors\HandleCors::class, + \Fruitcake\Cors\HandleCors::class, 'throttle:120,1', 'auth:api', ],