diff options
| author | Luke <luke.pulverenti@gmail.com> | 2014-02-02 05:37:48 -0800 |
|---|---|---|
| committer | Luke <luke.pulverenti@gmail.com> | 2014-02-02 05:37:48 -0800 |
| commit | 8c40c1c6dd8faddb832c04370dca93d3a9e5dccc (patch) | |
| tree | 52cb9a84db11ef798f43e5132b7b67667cda95ea /MediaBrowser.Server.Mono/Program.cs | |
| parent | 9e0c1340fc3ad4b41e3c349b98ea71b708ade95a (diff) | |
| parent | a9e2cc88c5af9ea70431d8e1bba14cb64afbd079 (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.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"); |
