fixed user collections not getting populated

This commit is contained in:
Luke Pulverenti
2013-05-26 21:43:18 -04:00
parent 911a60971f
commit 16e9a7e42f
2 changed files with 15 additions and 2 deletions

View File

@@ -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;
}