Skip to content

Commit

Permalink
fix(Channel): getting community continuations (#329)
Browse files Browse the repository at this point in the history
  • Loading branch information
ChunkyProgrammer authored Mar 1, 2023
1 parent 33a6e74 commit 4c7b8a3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/parser/youtube/Channel.ts
Original file line number Diff line number Diff line change
Expand Up @@ -254,7 +254,7 @@ export class ChannelListContinuation extends Feed<IBrowseResponse> {
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();
}

Expand Down

0 comments on commit 4c7b8a3

Please sign in to comment.