mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-07-16 02:02:55 -07:00
The album in Lidarr does not need to be marked as monitored for us to pick up it's available. Fixes #2536
This commit is contained in:
parent
fdb985dd08
commit
c14be4eaf9
1 changed files with 1 additions and 1 deletions
|
@ -43,7 +43,7 @@ namespace Ombi.Schedule.Jobs.Lidarr
|
|||
var cachedAlbum = await _cachedAlbums.FirstOrDefaultAsync(x => x.ForeignAlbumId.Equals(request.ForeignAlbumId));
|
||||
if (cachedAlbum != null)
|
||||
{
|
||||
if (cachedAlbum.Monitored && cachedAlbum.FullyAvailable)
|
||||
if (cachedAlbum.FullyAvailable)
|
||||
{
|
||||
request.Available = true;
|
||||
request.MarkedAsAvailable = DateTime.Now;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue