aboutsummaryrefslogtreecommitdiff
path: root/ServiceStack/Host/ServiceController.cs
diff options
context:
space:
mode:
authorLuke <luke.pulverenti@gmail.com>2016-12-04 17:02:21 -0500
committerGitHub <noreply@github.com>2016-12-04 17:02:21 -0500
commit06a8b8af88bad549f3722c6dd13b38df24a57583 (patch)
tree4a99e9bd84d093af9b87c5277346136396a670c9 /ServiceStack/Host/ServiceController.cs
parentf04b7339964ccc574a756207a7af33e21505b3c6 (diff)
parent8c8f2aaba5e4bf573efe2730b5450a8c07abe1b3 (diff)
Merge pull request #2329 from MediaBrowser/dev
Dev
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)
{