mirror of
https://github.com/Radarr/Radarr
synced 2026-03-01 10:02:57 +01:00
Added a few more files to ignore during file copy.
This commit is contained in:
parent
c9d1807670
commit
35741b9cae
1 changed files with 1 additions and 1 deletions
|
|
@ -590,7 +590,7 @@ private bool ShouldIgnore(DirectoryInfo folder)
|
|||
|
||||
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…
Reference in a new issue