update url matching

This commit is contained in:
Luke Pulverenti
2016-12-04 16:54:45 -05:00
parent ef94bab432
commit 598f1cf2bd
2 changed files with 10 additions and 5 deletions

View File

@@ -83,7 +83,7 @@ namespace ServiceStack.Host
}
}
public readonly Dictionary<string, List<RestPath>> RestPathMap = new Dictionary<string, List<RestPath>>();
public readonly Dictionary<string, List<RestPath>> RestPathMap = new Dictionary<string, List<RestPath>>(StringComparer.OrdinalIgnoreCase);
public void RegisterRestPaths(Type requestType)
{