diff --git a/src/Server/Controllers/AuthenticationController.cs b/src/Server/Controllers/AuthenticationController.cs index 3e4bb5d..acd951f 100755 --- a/src/Server/Controllers/AuthenticationController.cs +++ b/src/Server/Controllers/AuthenticationController.cs @@ -50,7 +50,7 @@ namespace Auth.Controllers { await _databaseService.SetAccount(test); string jwt = AuthJWT.GenereateJWTToken(test, request.StayLoggedIn); - SignIn(Response, request.StayLoggedIn, jwt); + SignIn(Response, jwt); return Ok(test); }