Fixed returning empty artist list from db.

This commit is contained in:
Joseph Milazzo 2017-05-04 08:00:19 -05:00
parent 78639d1787
commit 50d5693399
1 changed files with 1 additions and 4 deletions

View File

@ -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)