aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/IO/FileSystem.cs
diff options
context:
space:
mode:
Diffstat (limited to 'MediaBrowser.Controller/IO/FileSystem.cs')
-rw-r--r--MediaBrowser.Controller/IO/FileSystem.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/MediaBrowser.Controller/IO/FileSystem.cs b/MediaBrowser.Controller/IO/FileSystem.cs
index 04eefd4a1..e5f80533a 100644
--- a/MediaBrowser.Controller/IO/FileSystem.cs
+++ b/MediaBrowser.Controller/IO/FileSystem.cs
@@ -34,7 +34,7 @@ namespace MediaBrowser.Controller.IO
{
var fileInfo = new DirectoryInfo(path);
- if (fileInfo.Exists || path.EndsWith(":\\", StringComparison.OrdinalIgnoreCase))
+ if (fileInfo.Exists)
{
return fileInfo;
}