mirror of
https://github.com/fergalmoran/Readarr.git
synced 2026-01-30 04:24:02 +00:00
Get album by the id instead of hardcoded value due to #20 fixing albumId
This commit is contained in:
@@ -171,7 +171,7 @@ namespace NzbDrone.Core.IndexerSearch
|
||||
|
||||
public List<DownloadDecision> AlbumSearch(int albumId, bool missingOnly, bool userInvokedSearch)
|
||||
{
|
||||
var album = _albumService.GetAlbum(1);
|
||||
var album = _albumService.GetAlbum(albumId);
|
||||
return AlbumSearch(album, missingOnly, userInvokedSearch);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user