diff --git a/deno/package.json b/deno/package.json index c0565916..72d08e4b 100644 --- a/deno/package.json +++ b/deno/package.json @@ -1,6 +1,6 @@ { "name": "youtubei.js", - "version": "9.0.1", + "version": "9.0.2", "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", diff --git a/deno/src/parser/youtube/VideoInfo.ts b/deno/src/parser/youtube/VideoInfo.ts index 2a15489b..9bc9379f 100644 --- a/deno/src/parser/youtube/VideoInfo.ts +++ b/deno/src/parser/youtube/VideoInfo.ts @@ -231,7 +231,7 @@ class VideoInfo extends MediaInfo { throw new InnertubeError('Watch next feed continuation not found'); const response = await this.#watch_next_continuation?.endpoint.call(this.actions, { parse: true }); - const data = response?.on_response_received_endpoints?.get({ type: 'appendContinuationItemsAction' }); + const data = response?.on_response_received_endpoints?.get({ type: 'AppendContinuationItemsAction' }); if (!data) throw new InnertubeError('AppendContinuationItemsAction not found');