aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--client/src/app/shared/shared-video-live/live-stream-information.component.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/client/src/app/shared/shared-video-live/live-stream-information.component.ts b/client/src/app/shared/shared-video-live/live-stream-information.component.ts
index 1cf6f8528..c60f7fe2f 100644
--- a/client/src/app/shared/shared-video-live/live-stream-information.component.ts
+++ b/client/src/app/shared/shared-video-live/live-stream-information.component.ts
@@ -54,6 +54,6 @@ export class LiveStreamInformationComponent {
54 .subscribe(live => this.live = live) 54 .subscribe(live => this.live = live)
55 55
56 this.liveVideoService.listSessions(video.id) 56 this.liveVideoService.listSessions(video.id)
57 .subscribe(({ data }) => this.latestLiveSessions = data.slice(0, 5)) 57 .subscribe(({ data }) => this.latestLiveSessions = data.reverse().slice(0, 5))
58 } 58 }
59} 59}