1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2025-11-06 09:19:38 +02:00

Fixed: Multiple Downloaded Episodes Scan commands should not run in parallel

This commit is contained in:
Mark McDowall
2023-03-13 18:11:17 -07:00
parent cd67671bc1
commit b3d1e4f520

View File

@@ -9,5 +9,7 @@ namespace NzbDrone.Core.MediaFiles.Commands
public string Path { get; set; }
public string DownloadClientId { get; set; }
public ImportMode ImportMode { get; set; }
public override bool RequiresDiskAccess => true;
public override bool IsLongRunning => true;
}
}