diff options
author | Andrew Arnott <andrewarnott@gmail.com> | 2011-09-28 08:42:22 -0700 |
---|---|---|
committer | Andrew Arnott <andrewarnott@gmail.com> | 2011-09-28 08:42:22 -0700 |
commit | 8f13641229e8ec14a37d9d060c5829002a89f386 (patch) | |
tree | c28ab1939e81a35cadd3e101656da042b675d02e /samples/OAuthClient/Twitter.aspx.cs | |
parent | b280c7c61ab1d5dd24456ae5043c0eb4759989ef (diff) | |
parent | f1a4155398635a4fd9f485eec817152627682704 (diff) | |
download | DotNetOpenAuth-8f13641229e8ec14a37d9d060c5829002a89f386.zip DotNetOpenAuth-8f13641229e8ec14a37d9d060c5829002a89f386.tar.gz DotNetOpenAuth-8f13641229e8ec14a37d9d060c5829002a89f386.tar.bz2 |
Merge branch 'master' into splitDlls
Diffstat (limited to 'samples/OAuthClient/Twitter.aspx.cs')
-rw-r--r-- | samples/OAuthClient/Twitter.aspx.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/samples/OAuthClient/Twitter.aspx.cs b/samples/OAuthClient/Twitter.aspx.cs index 03824a8..9c0cb9a 100644 --- a/samples/OAuthClient/Twitter.aspx.cs +++ b/samples/OAuthClient/Twitter.aspx.cs @@ -47,7 +47,7 @@ this.AccessToken = accessTokenResponse.AccessToken; } else if (this.AccessToken == null) { // If we don't yet have access, immediately request it. - twitter.Channel.Respond(twitter.PrepareRequestUserAuthorization()); + twitter.Channel.Send(twitter.PrepareRequestUserAuthorization()); } } } |