From 4c7b8a34030effa26c4ea186d3e9509128aec31c Mon Sep 17 00:00:00 2001 From: ChunkyProgrammer <78101139+ChunkyProgrammer@users.noreply.github.com> Date: Wed, 1 Mar 2023 14:28:26 -0500 Subject: [PATCH] fix(Channel): getting community continuations (#329) --- src/parser/youtube/Channel.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/parser/youtube/Channel.ts b/src/parser/youtube/Channel.ts index cfa1ae7c..c17595fc 100644 --- a/src/parser/youtube/Channel.ts +++ b/src/parser/youtube/Channel.ts @@ -254,7 +254,7 @@ export class ChannelListContinuation extends Feed { constructor(actions: Actions, data: ApiResponse | IBrowseResponse, already_parsed = false) { super(actions, data, already_parsed); this.contents = - this.page.on_response_received_actions.first() || + this.page.on_response_received_actions?.first() || this.page.on_response_received_endpoints?.first(); }