mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-20 13:33:34 -07:00
Get album by the id instead of hardcoded value due to #20 fixing albumId
This commit is contained in:
parent
8c4d99eeff
commit
4e353382a5
1 changed files with 1 additions and 1 deletions
|
@ -171,7 +171,7 @@ namespace NzbDrone.Core.IndexerSearch
|
||||||
|
|
||||||
public List<DownloadDecision> AlbumSearch(int albumId, bool missingOnly, bool userInvokedSearch)
|
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);
|
return AlbumSearch(album, missingOnly, userInvokedSearch);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue