mirror of
https://github.com/sphildreth/roadie
synced 2024-11-10 06:44:12 +00:00
que work
This commit is contained in:
parent
4860d9a185
commit
a22bed9ce4
1 changed files with 1 additions and 1 deletions
|
@ -323,7 +323,7 @@ namespace Roadie.Api.Services
|
|||
where (request.FilterToPlaylistId == null || playlistTrackIds.Contains(t.Id))
|
||||
where (!request.FilterTopPlayedOnly || topTrackids.Contains(t.Id))
|
||||
where (randomTrackIds == null || randomTrackIds.Contains(t.Id))
|
||||
where (request.FilterToArtistId == null || request.FilterToArtistId != null && r.Artist.RoadieId == request.FilterToArtistId)
|
||||
where (request.FilterToArtistId == null || request.FilterToArtistId != null && ((t.TrackArtist != null && t.TrackArtist.RoadieId == request.FilterToArtistId) || r.Artist.RoadieId == request.FilterToArtistId))
|
||||
select new
|
||||
{
|
||||
ti = new
|
||||
|
|
Loading…
Reference in a new issue