aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Server.Mono/Program.cs
diff options
context:
space:
mode:
authorabeloin <alexandre.beloin@gmail.com>2014-02-01 21:23:27 -0500
committerabeloin <alexandre.beloin@gmail.com>2014-02-01 21:23:27 -0500
commita9e2cc88c5af9ea70431d8e1bba14cb64afbd079 (patch)
tree0d19e3113b4da274faaad9c9bff82ddbdcc8459d /MediaBrowser.Server.Mono/Program.cs
parent53776b332c727c8e5e21a99ab2c633a266df336b (diff)
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");