Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Lidarr/commit/443e536005fc468768060843af1b66e5acef8eba You should set ROOT_URL correctly, otherwise the web may not work correctly.

Fixed: Only look for monitored albums on artist search

pull/181/head
Qstick 7 years ago
parent bef04af5cd
commit 443e536005

@ -58,6 +58,8 @@ namespace NzbDrone.Core.IndexerSearch
var searchSpec = Get<ArtistSearchCriteria>(artist, userInvokedSearch, interactiveSearch);
var albums = _albumService.GetAlbumsByArtist(artist.Id);
albums = albums.Where(a => a.Monitored).ToList();
searchSpec.Albums = albums;
return Dispatch(indexer => indexer.Fetch(searchSpec), searchSpec);

Loading…
Cancel
Save