Skip to content

Commit

Permalink
typos
Browse files Browse the repository at this point in the history
  • Loading branch information
mythz committed Feb 27, 2019
1 parent 94f57fb commit 93ad4ab
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/ServiceStack.Kestrel/AppSelfHostBase.cs
Original file line number Diff line number Diff line change
Expand Up @@ -74,9 +74,9 @@ public virtual async Task ProcessRequest(HttpContext context, Func<Task> next)
if (!string.IsNullOrEmpty(mode))
{
var includedInPathInfo = pathInfo.IndexOf(mode, StringComparison.Ordinal) == 1;
var includedInPathPase = context.Request.PathBase.HasValue &&
var includedInPathBase = context.Request.PathBase.HasValue &&
context.Request.PathBase.Value.IndexOf(mode, StringComparison.Ordinal) == 1;
if (!includedInPathInfo && !includedInPathPase)
if (!includedInPathInfo && !includedInPathBase)
{
await next();
return;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ namespace ServiceStack.WebHost.Endpoints.Tests
public class MultiTenantChangeDbAppHost : AppSelfHostBase
{
public MultiTenantChangeDbAppHost()
: base("Multi Tennant Test", typeof (MultiTenantChangeDbAppHost).Assembly) {}
: base("Multi Tenant Test", typeof (MultiTenantChangeDbAppHost).Assembly) {}

public override void Configure(Container container)
{
Expand Down

0 comments on commit 93ad4ab

Please sign in to comment.