Skip to content
This repository has been archived by the owner on Jan 24, 2021. It is now read-only.

Commit

Permalink
Fixed stupid compilation failure.
Browse files Browse the repository at this point in the history
  • Loading branch information
grumpydev committed Oct 20, 2011
1 parent 08dd697 commit b0c386f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Nancy.Hosting.Aspnet/NancyHandler.cs
Expand Up @@ -34,7 +34,7 @@ private static Request CreateNancyRequest(HttpContextBase context)
var nancyUrl = new Url
{
Scheme = context.Request.Url.Scheme,
HostName = context.Url.Host,
HostName = context.Request.Url.Host,
Port = context.Request.Url.Port,
BasePath = context.Request.ApplicationPath.TrimEnd('/'),
Path = context.Request.AppRelativeCurrentExecutionFilePath.Replace("~", string.Empty),
Expand Down

0 comments on commit b0c386f

Please sign in to comment.