diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2016-12-04 16:54:45 -0500 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2016-12-04 16:54:45 -0500 |
| commit | 598f1cf2bddebbd167ed70470e54a2504ca4c0a7 (patch) | |
| tree | 9381039f567f3f23224206f621a8c642c6e84a20 /ServiceStack/Host/ServiceController.cs | |
| parent | ef94bab43254a543ee97b5a844ddee6f6a35ee6f (diff) | |
update url matching
Diffstat (limited to 'ServiceStack/Host/ServiceController.cs')
| -rw-r--r-- | ServiceStack/Host/ServiceController.cs | 2 |
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) { |
