diff --git a/src/core/mixins/Feed.ts b/src/core/mixins/Feed.ts index ec4d1b9e..26daa3c7 100644 --- a/src/core/mixins/Feed.ts +++ b/src/core/mixins/Feed.ts @@ -185,10 +185,8 @@ export default class Feed { */ async getContinuationData(): Promise { if (this.#continuation) { - if (this.#continuation.length > 1) - throw new InnertubeError('There are too many continuations, you\'ll need to find the correct one yourself in this.page'); if (this.#continuation.length === 0) - throw new InnertubeError('There are no continuations'); + throw new InnertubeError('There are no continuations.'); const response = await this.#continuation[0].endpoint.call(this.#actions, { parse: true });