aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Server.Mono/Program.cs
diff options
context:
space:
mode:
authorLuke <luke.pulverenti@gmail.com>2014-02-02 05:37:48 -0800
committerLuke <luke.pulverenti@gmail.com>2014-02-02 05:37:48 -0800
commit8c40c1c6dd8faddb832c04370dca93d3a9e5dccc (patch)
tree52cb9a84db11ef798f43e5132b7b67667cda95ea /MediaBrowser.Server.Mono/Program.cs
parent9e0c1340fc3ad4b41e3c349b98ea71b708ade95a (diff)
parenta9e2cc88c5af9ea70431d8e1bba14cb64afbd079 (diff)
Merge pull request #701 from abeloin/monofixes
Fix case-sensitive filenames.
Diffstat (limited to 'MediaBrowser.Server.Mono/Program.cs')
-rw-r--r--MediaBrowser.Server.Mono/Program.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/MediaBrowser.Server.Mono/Program.cs b/MediaBrowser.Server.Mono/Program.cs
index 7afe0ce03..0f2a90900 100644
--- a/MediaBrowser.Server.Mono/Program.cs
+++ b/MediaBrowser.Server.Mono/Program.cs
@@ -110,7 +110,7 @@ namespace MediaBrowser.Server.Mono
// Allow all https requests
ServicePointManager.ServerCertificateValidationCallback = _ignoreCertificates;
- _appHost = new ApplicationHost(appPaths, logManager);
+ _appHost = new ApplicationHost(appPaths, logManager, false);
Console.WriteLine ("appHost.Init");