1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-11-04 10:02:40 +01:00

Manual Import sends progress messages

This commit is contained in:
Mark McDowall 2015-05-13 08:05:23 -07:00
parent c4e1a732dd
commit 9d980a8ac7

View File

@ -6,5 +6,13 @@ namespace NzbDrone.Core.MediaFiles.EpisodeImport.Manual
public class ManualImportCommand : Command
{
public List<ManualImportFile> Files { get; set; }
public override bool SendUpdatesToClient
{
get
{
return true;
}
}
}
}