Skip to content

Commit

Permalink
Little fix on the logic of the last commit.
Browse files Browse the repository at this point in the history
  • Loading branch information
Pedro Rebelo committed Jun 4, 2018
1 parent c9dd2cc commit b4447fa
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -237,7 +237,7 @@ private async Task<bool> InvokeReplyPathAsync()

private string GetRequestPrefix()
{
return String.IsNullOrEmpty(Options.RequestPrefix)
return !String.IsNullOrEmpty(Options.RequestPrefix)
? Options.RequestPrefix
: Request.Scheme + Uri.SchemeDelimiter + Request.Host;
}
Expand Down

0 comments on commit b4447fa

Please sign in to comment.