From 230813a724999f634f3fa599e3e2f2586513c68d Mon Sep 17 00:00:00 2001 From: ChunkyProgrammer <78101139+ChunkyProgrammer@users.noreply.github.com> Date: Wed, 1 Mar 2023 11:35:46 -0500 Subject: [PATCH] fix getting community continuations --- 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 cfa1ae7ce..c17595fc6 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(); }