aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Server.Implementations/Library/LibraryManager.cs
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2016-10-17 12:35:29 -0400
committerLuke Pulverenti <luke.pulverenti@gmail.com>2016-10-17 12:35:29 -0400
commitbba0c564c7f9db6a6d5d2b16b1c8ae453eeaed34 (patch)
tree890566689f2d6e76eb0f7cef2c87c1b892bc5aa4 /MediaBrowser.Server.Implementations/Library/LibraryManager.cs
parentba613d567102bd2c3ec2ce2c5f7f94dcd04f1c73 (diff)
remove dead interface objects
Diffstat (limited to 'MediaBrowser.Server.Implementations/Library/LibraryManager.cs')
-rw-r--r--MediaBrowser.Server.Implementations/Library/LibraryManager.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/MediaBrowser.Server.Implementations/Library/LibraryManager.cs b/MediaBrowser.Server.Implementations/Library/LibraryManager.cs
index b2302cf86..a45d7ae5f 100644
--- a/MediaBrowser.Server.Implementations/Library/LibraryManager.cs
+++ b/MediaBrowser.Server.Implementations/Library/LibraryManager.cs
@@ -2838,7 +2838,7 @@ namespace MediaBrowser.Server.Implementations.Library
private bool ValidateNetworkPath(string path)
{
- if (Environment.OSVersion.Platform == PlatformID.Win32NT || !path.StartsWith("\\\\", StringComparison.OrdinalIgnoreCase))
+ if (Environment.OSVersion.Platform == PlatformID.Win32NT)
{
return Directory.Exists(path);
}