Fix latest live sessions order

pull/5098/head
Chocobozzz 2022-06-24 09:53:03 +02:00
parent b6e2b5df73
commit 087c7118f5
No known key found for this signature in database
GPG Key ID: 583A612D890159BE
1 changed files with 1 additions and 1 deletions

View File

@ -54,6 +54,6 @@ export class LiveStreamInformationComponent {
.subscribe(live => this.live = live)
this.liveVideoService.listSessions(video.id)
.subscribe(({ data }) => this.latestLiveSessions = data.slice(0, 5))
.subscribe(({ data }) => this.latestLiveSessions = data.reverse().slice(0, 5))
}
}