mirror of
https://github.com/Readarr/Readarr.git
synced 2026-04-25 22:36:59 -04:00
Fixed: Frontend updates when selected album release changed
This commit is contained in:
@@ -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;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user