Fixed returning empty artist list from db.

pull/4/head
Joseph Milazzo 7 years ago
parent 78639d1787
commit 50d5693399

@ -86,10 +86,7 @@ namespace NzbDrone.Core.Music
public List<Artist> GetAllArtists()
{
_logger.Debug("Count of repository: " + _artistRepository.Count());
// TEMP: Return empty list while we debug the DB error
return new List<Artist>();
//return _artistRepository.All().ToList();
return _artistRepository.All().ToList();
}
public Artist GetArtist(int artistId)

Loading…
Cancel
Save