Fixed: Frontend updates when selected album release changed

This commit is contained in:
ta264
2019-08-01 22:22:28 +01:00
parent dcca2b5a1a
commit 1dcccf2683
4 changed files with 30 additions and 9 deletions
@@ -5,16 +5,19 @@ namespace NzbDrone.Core.MediaFiles.Commands
public class RescanArtistCommand : Command
{
public int? ArtistId { get; set; }
public FilterFilesType Filter { get; set; }
public override bool SendUpdatesToClient => true;
public RescanArtistCommand()
public RescanArtistCommand(FilterFilesType filter = FilterFilesType.Known)
{
Filter = filter;
}
public RescanArtistCommand(int artistId)
public RescanArtistCommand(int artistId, FilterFilesType filter = FilterFilesType.Known)
{
ArtistId = artistId;
Filter = filter;
}
}
}