aboutsummaryrefslogtreecommitdiff
path: root/ServiceStack/Host/ServiceController.cs
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2016-12-04 16:54:45 -0500
committerLuke Pulverenti <luke.pulverenti@gmail.com>2016-12-04 16:54:45 -0500
commit598f1cf2bddebbd167ed70470e54a2504ca4c0a7 (patch)
tree9381039f567f3f23224206f621a8c642c6e84a20 /ServiceStack/Host/ServiceController.cs
parentef94bab43254a543ee97b5a844ddee6f6a35ee6f (diff)
update url matching
Diffstat (limited to 'ServiceStack/Host/ServiceController.cs')
-rw-r--r--ServiceStack/Host/ServiceController.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/ServiceStack/Host/ServiceController.cs b/ServiceStack/Host/ServiceController.cs
index 7eb1253b3..378c21d5d 100644
--- a/ServiceStack/Host/ServiceController.cs
+++ b/ServiceStack/Host/ServiceController.cs
@@ -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)
{