From 18a653e10af08bffa4cc0e306c0ae65dc1461ae7 Mon Sep 17 00:00:00 2001 From: OxSaitama Date: Mon, 14 Aug 2023 14:36:12 +0200 Subject: [PATCH] remove error in response --- src/app/api/idnot/UserController.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/api/idnot/UserController.ts b/src/app/api/idnot/UserController.ts index 9f240506..b63d3fec 100644 --- a/src/app/api/idnot/UserController.ts +++ b/src/app/api/idnot/UserController.ts @@ -50,7 +50,7 @@ export default class UserController extends ApiController { this.httpSuccess(response, { accessToken, refreshToken }); } catch (error) { console.log(error); - this.httpInternalError(response, error); + this.httpInternalError(response); return; } }