diff options
-rw-r--r-- | samples/OAuthAuthorizationServer/Controllers/OAuthController.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/samples/OAuthAuthorizationServer/Controllers/OAuthController.cs b/samples/OAuthAuthorizationServer/Controllers/OAuthController.cs index 2444776..2a52e4f 100644 --- a/samples/OAuthAuthorizationServer/Controllers/OAuthController.cs +++ b/samples/OAuthAuthorizationServer/Controllers/OAuthController.cs @@ -25,7 +25,7 @@ if (this.authorizationServer.TryPrepareAccessTokenResponse(out response)) {
return this.authorizationServer.Channel.PrepareResponse(response).AsActionResult();
} else {
- throw new HttpException((int) HttpStatusCode.BadRequest, "Missing OAuth 2.0 request message.");
+ throw new HttpException((int)HttpStatusCode.BadRequest, "Missing OAuth 2.0 request message.");
}
}
|