diff options
author | jeroenwalter <jeroen@enormkansloos.nl> | 2015-12-13 12:48:29 +0100 |
---|---|---|
committer | jeroenwalter <jeroen@enormkansloos.nl> | 2015-12-13 12:48:29 +0100 |
commit | f6452b33fe219fc0edb9a8540603221be23e462d (patch) | |
tree | d348a54ed2d24b8f31c4fdf3023c90f675e466cd /ComicRackWebViewer/Bootstrapper.cs | |
parent | 2287abbca8ef7415845691f35a8517f8b238c0fc (diff) | |
download | ComicRackWeb-master.zip ComicRackWeb-master.tar.gz ComicRackWeb-master.tar.bz2 |
v1.31 for CR 0.9.177HEADorigin/masterorigin/HEADmaster
- updated Sencha Touch to 2.4.2
- updated .NET packages
Diffstat (limited to 'ComicRackWebViewer/Bootstrapper.cs')
-rw-r--r-- | ComicRackWebViewer/Bootstrapper.cs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/ComicRackWebViewer/Bootstrapper.cs b/ComicRackWebViewer/Bootstrapper.cs index 2cb0230..1bcfa33 100644 --- a/ComicRackWebViewer/Bootstrapper.cs +++ b/ComicRackWebViewer/Bootstrapper.cs @@ -43,7 +43,8 @@ namespace ComicRackWebViewer // Also, for some reason I don't get InvalidOperationException ("Nancy.Json.JsonSettings.MaxJsonLength exceeded")
// Instead Nancy generates a response with status OK and content length 0.
Nancy.Json.JsonSettings.MaxJsonLength = Int32.MaxValue;
-
+ Nancy.Json.JsonSettings.RetainCasing = true;
+
// Case sensitivity is buggy in Nancy, so disable it. Or maybe I should generate/parse GUIDs correctly......
StaticConfiguration.CaseSensitive = false;
|