Cleanup Conflicts in Sonarr/Lidarr Pulls

Co-Authored-By: Robin Dadswell <19610103+RobinDadswell@users.noreply.github.com>
This commit is contained in:
Qstick
2021-01-24 02:22:50 -05:00
parent ffc12656ee
commit 93ba5ade9e
298 changed files with 4460 additions and 4508 deletions
@@ -9,20 +9,20 @@ namespace NzbDrone.Core.MediaFiles.Commands
{
// These are the settings used in the scheduled task
Filter = FilterFilesType.Known;
AddNewArtists = true;
AddNewAuthors = true;
}
public RescanFoldersCommand(List<string> folders, FilterFilesType filter, bool addNewArtists, List<int> authorIds)
public RescanFoldersCommand(List<string> folders, FilterFilesType filter, bool addNewAuthors, List<int> authorIds)
{
Folders = folders;
Filter = filter;
AddNewArtists = addNewArtists;
AddNewAuthors = addNewAuthors;
AuthorIds = authorIds;
}
public List<string> Folders { get; set; }
public FilterFilesType Filter { get; set; }
public bool AddNewArtists { get; set; }
public bool AddNewAuthors { get; set; }
public List<int> AuthorIds { get; set; }
public override bool SendUpdatesToClient => true;