1
0
Fork 0
mirror of https://github.com/lidarr/Lidarr synced 2025-02-25 07:12:40 +00:00

Fixed: Delete files from Artist Mass Editor not actually deleting files

Co-Authored-By: Mark McDowall <markus101@users.noreply.github.com>
This commit is contained in:
Qstick 2020-09-07 00:33:17 -04:00
parent 341c42d8e6
commit c0fede5697
2 changed files with 2 additions and 1 deletions

View file

@ -102,7 +102,7 @@ private object DeleteArtist()
foreach (var artistId in resource.ArtistIds) foreach (var artistId in resource.ArtistIds)
{ {
_artistService.DeleteArtist(artistId, false); _artistService.DeleteArtist(artistId, resource.DeleteFiles);
} }
return new object(); return new object();

View file

@ -13,6 +13,7 @@ public class ArtistEditorResource
public List<int> Tags { get; set; } public List<int> Tags { get; set; }
public ApplyTags ApplyTags { get; set; } public ApplyTags ApplyTags { get; set; }
public bool MoveFiles { get; set; } public bool MoveFiles { get; set; }
public bool DeleteFiles { get; set; }
} }
public enum ApplyTags public enum ApplyTags