remove use of Environment

This commit is contained in:
Luke Pulverenti 2016-10-29 14:45:07 -04:00
parent da7d61be5a
commit e508752191

View file

@ -136,20 +136,17 @@ namespace MediaBrowser.Api
{
var result = new DefaultDirectoryBrowserInfo();
if (Environment.OSVersion.Platform == PlatformID.Unix)
try
{
try
var qnap = "/share/CACHEDEV1_DATA";
if (Directory.Exists(qnap))
{
var qnap = "/share/CACHEDEV1_DATA";
if (Directory.Exists(qnap))
{
result.Path = qnap;
}
result.Path = qnap;
}
catch
{
}
catch
{
}
}
return ToOptimizedResult(result);