diff options
| author | LukePulverenti Luke Pulverenti luke pulverenti <LukePulverenti Luke Pulverenti luke.pulverenti@gmail.com> | 2012-09-06 15:20:35 -0400 |
|---|---|---|
| committer | LukePulverenti Luke Pulverenti luke pulverenti <LukePulverenti Luke Pulverenti luke.pulverenti@gmail.com> | 2012-09-06 15:20:35 -0400 |
| commit | 75b015c864c33437febbf9edaa9a5097578752f3 (patch) | |
| tree | 08e86b5a08a698a42bd8495ade24a9938da0630f /MediaBrowser.Api/HttpHandlers/UserAuthenticationHandler.cs | |
| parent | b12da143d1e8a319e4b7309ab9240b603b544e18 (diff) | |
Added Async suffix
Diffstat (limited to 'MediaBrowser.Api/HttpHandlers/UserAuthenticationHandler.cs')
| -rw-r--r-- | MediaBrowser.Api/HttpHandlers/UserAuthenticationHandler.cs | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/MediaBrowser.Api/HttpHandlers/UserAuthenticationHandler.cs b/MediaBrowser.Api/HttpHandlers/UserAuthenticationHandler.cs index ed588e776..86f3c477a 100644 --- a/MediaBrowser.Api/HttpHandlers/UserAuthenticationHandler.cs +++ b/MediaBrowser.Api/HttpHandlers/UserAuthenticationHandler.cs @@ -17,12 +17,10 @@ namespace MediaBrowser.Api.HttpHandlers string password = await GetFormValue("password").ConfigureAwait(false);
- AuthenticationResult result = new AuthenticationResult()
+ return new AuthenticationResult()
{
Success = true
- };
-
- return result;
+ };
}
}
}
|
