Merge branch 'fix-broken-artist-embed' into 'develop'

Fix issue with artist embed

See merge request funkwhale/funkwhale!1166
This commit is contained in:
Agate 2020-07-15 20:02:04 +02:00
commit 0e3cf3535a
1 changed files with 1 additions and 1 deletions

View File

@ -238,7 +238,7 @@ export default {
this.fetchTracks({channel: id, playable: true, include_channels: 'true', ordering: "-creation_date"})
}
if (type === 'artist') {
this.fetchTracks({artist: id, playable: true, include_channels: 'true', ordering: "-release_date,disc_number,position"})
this.fetchTracks({artist: id, playable: true, include_channels: 'true', ordering: "-album__release_date,disc_number,position"})
}
if (type === 'playlist') {
this.fetchTracks({}, `/api/v1/playlists/${id}/tracks/`)