mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-14 02:37:08 -07:00
Fixed returning empty artist list from db.
This commit is contained in:
parent
78639d1787
commit
50d5693399
1 changed files with 1 additions and 4 deletions
|
@ -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…
Add table
Add a link
Reference in a new issue