summaryrefslogtreecommitdiffstats
path: root/src/DotNetOpenAuth.Core
diff options
context:
space:
mode:
authorAndrew Arnott <andrewarnott@gmail.com>2012-03-14 21:44:28 -0700
committerAndrew Arnott <andrewarnott@gmail.com>2012-03-14 21:44:28 -0700
commit85b43c815aa4fb069225ba31f9e763cd15bb6bc9 (patch)
treecc66acb6277379098377985e4e61698f6128e454 /src/DotNetOpenAuth.Core
parentf4f32954757f128a3c4107df55c674be6314a8d3 (diff)
downloadDotNetOpenAuth-85b43c815aa4fb069225ba31f9e763cd15bb6bc9.zip
DotNetOpenAuth-85b43c815aa4fb069225ba31f9e763cd15bb6bc9.tar.gz
DotNetOpenAuth-85b43c815aa4fb069225ba31f9e763cd15bb6bc9.tar.bz2
Access token endpoint now can respond with appropriate errors.
Diffstat (limited to 'src/DotNetOpenAuth.Core')
-rw-r--r--src/DotNetOpenAuth.Core/Messaging/OutgoingWebResponseActionResult.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/DotNetOpenAuth.Core/Messaging/OutgoingWebResponseActionResult.cs b/src/DotNetOpenAuth.Core/Messaging/OutgoingWebResponseActionResult.cs
index 9569e34..a5fe782 100644
--- a/src/DotNetOpenAuth.Core/Messaging/OutgoingWebResponseActionResult.cs
+++ b/src/DotNetOpenAuth.Core/Messaging/OutgoingWebResponseActionResult.cs
@@ -34,7 +34,7 @@ namespace DotNetOpenAuth.Messaging {
/// </summary>
/// <param name="context">The context in which to set the response.</param>
public override void ExecuteResult(ControllerContext context) {
- this.response.Respond();
+ this.response.Respond(context.HttpContext);
}
}
}