fix(Channel): getting community continuations (#329)

This commit is contained in:
ChunkyProgrammer
2023-03-01 14:28:26 -05:00
committed by GitHub
parent 33a6e740d7
commit 4c7b8a3403

View File

@@ -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();
}