Change montior to Existing to properly add artist

Discussed and tested manually in https://github.com/Lidarr/Lidarr/issues/3597#issuecomment-1530804055
This commit is contained in:
Grygon 2023-05-01 22:11:28 -05:00 committed by GitHub
commit d9b26b2ac4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -100,7 +100,7 @@ namespace Ombi.Core.Senders
addOptions = new Addoptions addOptions = new Addoptions
{ {
monitored = true, monitored = true,
monitor = MonitorTypes.None, monitor = MonitorTypes.Existing,
searchForMissingAlbums = false, searchForMissingAlbums = false,
AlbumsToMonitor = new[] {model.ForeignAlbumId} AlbumsToMonitor = new[] {model.ForeignAlbumId}
}, },
@ -199,4 +199,4 @@ namespace Ombi.Core.Senders
return new SenderResult { Message = "Could not set album to monitored", Sent = false, Success = false }; return new SenderResult { Message = "Could not set album to monitored", Sent = false, Success = false };
} }
} }
} }