mirror of
https://github.com/YuzuZensai/play-dl-test.git
synced 2026-01-31 14:58:05 +00:00
Minor performance improvement
This commit is contained in:
@@ -128,7 +128,7 @@ export class YouTubePlayList {
|
||||
async next(limit = Infinity): Promise<YouTubeVideo[]> {
|
||||
if (!this._continuation || !this._continuation.token) return [];
|
||||
|
||||
const nextPage = await request(`${BASE_API}${this._continuation.api}`, {
|
||||
const nextPage = await request(`${BASE_API}${this._continuation.api}&prettyPrint=false`, {
|
||||
method: 'POST',
|
||||
body: JSON.stringify({
|
||||
continuation: this._continuation.token,
|
||||
|
||||
Reference in New Issue
Block a user