Skip to content

Commit

Permalink
Fixed compilation error
Browse files Browse the repository at this point in the history
  • Loading branch information
tatarincev committed Aug 13, 2018
1 parent 9632ea2 commit 4ab0cc3
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ private string GetTlsTokenBinding()
private async Task RedirectToLoginAsync(AuthenticationProperties properties)
{
var redirectUri = properties.RedirectUri;
if (redirectUri.IsNullOrEmpty())
if (string.IsNullOrEmpty(redirectUri))
{
redirectUri = OriginalPathBase + Request.Path + Request.QueryString;
}
Expand Down

0 comments on commit 4ab0cc3

Please sign in to comment.