From e4aa80fd24ca93de07a7445da6578a17eca3c98f Mon Sep 17 00:00:00 2001 From: FireMasterK <20838718+FireMasterK@users.noreply.github.com> Date: Tue, 30 Mar 2021 14:51:52 +0530 Subject: [PATCH] Fix channel continuation. --- src/components/Channel.vue | 1 + 1 file changed, 1 insertion(+) diff --git a/src/components/Channel.vue b/src/components/Channel.vue index 9863abcf..c7762ccb 100644 --- a/src/components/Channel.vue +++ b/src/components/Channel.vue @@ -98,6 +98,7 @@ export default { ).then(json => { this.channel.relatedStreams.concat(json.relatedStreams); this.channel.nextpage = json.nextpage; + this.channel.nextid = json.nextid; this.loading = false; json.relatedStreams.map(stream => this.channel.relatedStreams.push(stream)