diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2016-10-18 14:23:41 -0400 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2016-10-18 14:23:41 -0400 |
| commit | 2f17d160bc2c90d0fd54b42098fb7a60bc3c8264 (patch) | |
| tree | ce6881143c5fcf97c73869bb5ff8041594556436 /MediaBrowser.Server.Implementations/Library/LibraryManager.cs | |
| parent | 5ad04bbb7754eddaf07921ee0ec699a2a934c242 (diff) | |
limit number of people in dlna responses
Diffstat (limited to 'MediaBrowser.Server.Implementations/Library/LibraryManager.cs')
| -rw-r--r-- | MediaBrowser.Server.Implementations/Library/LibraryManager.cs | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/MediaBrowser.Server.Implementations/Library/LibraryManager.cs b/MediaBrowser.Server.Implementations/Library/LibraryManager.cs index a45d7ae5f..64abcc044 100644 --- a/MediaBrowser.Server.Implementations/Library/LibraryManager.cs +++ b/MediaBrowser.Server.Implementations/Library/LibraryManager.cs @@ -2840,7 +2840,11 @@ namespace MediaBrowser.Server.Implementations.Library { if (Environment.OSVersion.Platform == PlatformID.Win32NT) { - return Directory.Exists(path); + // We can't validate protocol-based paths, so just allow them + if (path.IndexOf("://", StringComparison.OrdinalIgnoreCase) == -1) + { + return Directory.Exists(path); + } } // Without native support for unc, we cannot validate this when running under mono |
