diff options
Diffstat (limited to 'MediaBrowser.Controller/IO/FileSystem.cs')
| -rw-r--r-- | MediaBrowser.Controller/IO/FileSystem.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/MediaBrowser.Controller/IO/FileSystem.cs b/MediaBrowser.Controller/IO/FileSystem.cs index e5f80533a..04eefd4a1 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) + if (fileInfo.Exists || path.EndsWith(":\\", StringComparison.OrdinalIgnoreCase)) { return fileInfo; } |
