1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-09-11 03:52:33 +02:00

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

(cherry picked from commit b3d1e4f520d14c41aa6a7dff049ee9b9ef48fecb)
This commit is contained in:
Mark McDowall 2023-03-13 18:11:17 -07:00 committed by Qstick
parent a006984d5e
commit 4627093616

View File

@ -13,5 +13,7 @@ public class DownloadedMoviesScanCommand : Command
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;
}
}