diff options
| author | abeloin <alexandre.beloin@gmail.com> | 2014-02-01 21:23:27 -0500 |
|---|---|---|
| committer | abeloin <alexandre.beloin@gmail.com> | 2014-02-01 21:23:27 -0500 |
| commit | a9e2cc88c5af9ea70431d8e1bba14cb64afbd079 (patch) | |
| tree | 0d19e3113b4da274faaad9c9bff82ddbdcc8459d /MediaBrowser.Server.Mono/Program.cs | |
| parent | 53776b332c727c8e5e21a99ab2c633a266df336b (diff) | |
Fix case-sensitive filenames.
Diffstat (limited to 'MediaBrowser.Server.Mono/Program.cs')
| -rw-r--r-- | MediaBrowser.Server.Mono/Program.cs | 2 |
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"); |
