fixes #225 - MediaServer Root Drive

pull/702/head
Luke Pulverenti 12 years ago
parent 68bc39fe4e
commit b67a0dfe03

@ -44,6 +44,15 @@ namespace MediaBrowser.Server.Implementations.Library
return false;
}
// Drives will sometimes be hidden
if (args.Path.EndsWith(":\\", StringComparison.OrdinalIgnoreCase))
{
if (new DriveInfo(args.Path).IsReady)
{
return false;
}
}
return true;
}

Loading…
Cancel
Save