Added a few more files to ignore during file copy.

pull/1754/head
Taloth Saldono 8 years ago
parent c9d1807670
commit 35741b9cae

@ -590,7 +590,7 @@ namespace NzbDrone.Common.Disk
private bool ShouldIgnore(FileInfo file)
{
if (file.Name.StartsWith(".nfs"))
if (file.Name.StartsWith(".nfs") || file.Name == "debug.log" || file.Name.EndsWith(".socket"))
{
_logger.Trace("Ignoring file {0}", file.FullName);
return true;

Loading…
Cancel
Save