chore: v3.1.1 release

This commit is contained in:
LuanRT
2023-03-01 19:31:11 +00:00
parent aeefe7538f
commit ae15fa742e
2 changed files with 2 additions and 2 deletions

View File

@@ -1,6 +1,6 @@
{
"name": "youtubei.js",
"version": "3.1.0",
"version": "3.1.1",
"description": "A wrapper around YouTube's private API. Supports YouTube, YouTube Music, YouTube Kids and YouTube Studio (WIP).",
"type": "module",
"types": "./dist/src/platform/lib.d.ts",

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