mirror of
https://github.com/lidarr/Lidarr
synced 2025-02-24 15:00:54 +00:00
Get album by the id instead of hardcoded value due to #20 fixing albumId
This commit is contained in:
parent
f5ce56567e
commit
1c6443d825
1 changed files with 1 additions and 1 deletions
|
@ -171,7 +171,7 @@ public List<DownloadDecision> SeasonSearch(int seriesId, int seasonNumber, bool
|
|||
|
||||
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);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue