From bbcd215ea473d892b62efb8f76badf378c86d30b Mon Sep 17 00:00:00 2001 From: snipe Date: Tue, 12 Jan 2021 08:58:40 -0800 Subject: [PATCH] Suppress OAuth token errors --- app/Exceptions/Handler.php | 1 + 1 file changed, 1 insertion(+) diff --git a/app/Exceptions/Handler.php b/app/Exceptions/Handler.php index 9a7c58a815..f037570648 100644 --- a/app/Exceptions/Handler.php +++ b/app/Exceptions/Handler.php @@ -25,6 +25,7 @@ class Handler extends ExceptionHandler \Illuminate\Session\TokenMismatchException::class, \Illuminate\Validation\ValidationException::class, \Intervention\Image\Exception\NotSupportedException::class, + \League\OAuth2\Server\Exception\OAuthServerException::class, ]; /**