Merge pull request #2040 from softworkz/IsFileLockedFix

FileRefresher.IsFileLocked: Don't log Exceptions in case of no write permission
This commit is contained in:
Luke 2016-08-13 02:47:45 -04:00 committed by GitHub
commit 5b92b44f1a

View File

@ -259,6 +259,11 @@ namespace MediaBrowser.Server.Implementations.IO
// File may have been deleted
return false;
}
catch (UnauthorizedAccessException)
{
Logger.Debug("No write permission for: {0}.", path);
return false;
}
catch (IOException)
{
//the file is unavailable because it is: