summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorAndrew Arnott <andrewarnott@gmail.com>2009-06-09 08:23:15 -0700
committerAndrew Arnott <andrewarnott@gmail.com>2009-06-09 08:23:15 -0700
commita5c44dbeaefe5872dc92be1d940a65cb56c0a70f (patch)
tree69e9fe613ed4a9336c4302795cc882ac9a98416c /src
parente6f0ca7a075d345b8da6871c42c0947f55e0867f (diff)
downloadDotNetOpenAuth-a5c44dbeaefe5872dc92be1d940a65cb56c0a70f.zip
DotNetOpenAuth-a5c44dbeaefe5872dc92be1d940a65cb56c0a70f.tar.gz
DotNetOpenAuth-a5c44dbeaefe5872dc92be1d940a65cb56c0a70f.tar.bz2
Fixed a couple of small bugs.
Diffstat (limited to 'src')
-rw-r--r--src/DotNetOpenAuth/OAuth/ServiceProvider.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/DotNetOpenAuth/OAuth/ServiceProvider.cs b/src/DotNetOpenAuth/OAuth/ServiceProvider.cs
index 721d40b..d4f64c8 100644
--- a/src/DotNetOpenAuth/OAuth/ServiceProvider.cs
+++ b/src/DotNetOpenAuth/OAuth/ServiceProvider.cs
@@ -273,7 +273,7 @@ namespace DotNetOpenAuth.OAuth {
ErrorUtilities.VerifyArgumentNotNull(request, "request");
ErrorUtilities.VerifyArgumentNotNull(callback, "callback");
- var authorization = new UserAuthorizationResponse(callback, this.ServiceDescription.Version) {
+ var authorization = new UserAuthorizationResponse(callback, request.Version) {
RequestToken = request.RequestToken,
};