Back to a stable build. Fixedtrackrepo.findtracks

This commit is contained in:
Joseph Milazzo
2017-06-20 08:03:13 -05:00
parent b4279a455e
commit e96cf08409
10 changed files with 14 additions and 13 deletions

View File

@@ -27,7 +27,7 @@ namespace NzbDrone.Core.MediaFiles
public List<TrackFile> GetFilesByArtist(string artistId)
{
return Query.Where(c => c.SpotifyTrackId == artistId).ToList();
return Query.Where(c => c.ForeignTrackId == artistId).ToList();
}
}
}