diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2013-05-26 21:43:18 -0400 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2013-05-26 21:43:18 -0400 |
| commit | 16e9a7e42fa4be2d82d059a898a1b8a753b8b1ea (patch) | |
| tree | defcb10ba91c292b036389228c8468af023bd6ae /MediaBrowser.Controller/IO/FileSystem.cs | |
| parent | 911a60971f6accb94351ccc581e8f1d86d59c1b5 (diff) | |
fixed user collections not getting populated
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 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; } |
