Minor performance improvement

This commit is contained in:
absidue 2022-04-24 12:48:27 +02:00
parent ff0129d9db
commit 5f993c4c0b
2 changed files with 3 additions and 3 deletions

View File

@ -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,

View File

@ -609,7 +609,7 @@ async function acceptViewerDiscretion(
if (!sessionToken)
throw new Error(`Unable to extract XSRF_TOKEN to accept the viewer discretion popup for video: ${videoId}.`);
const verificationResponse = await request(`https://www.youtube.com/youtubei/v1/verify_age?key=${apiKey}`, {
const verificationResponse = await request(`https://www.youtube.com/youtubei/v1/verify_age?key=${apiKey}&prettyPrint=false`, {
method: 'POST',
body: JSON.stringify({
context: {
@ -683,7 +683,7 @@ async function getAndroidFormats(videoId: string, cookieJar: { [key: string]: st
body.split('innertubeApiKey":"')[1]?.split('"')[0] ??
DEFAULT_API_KEY;
const response = await request(`https://www.youtube.com/youtubei/v1/player?key=${apiKey}`, {
const response = await request(`https://www.youtube.com/youtubei/v1/player?key=${apiKey}&prettyPrint=false`, {
method: 'POST',
body: JSON.stringify({
context: {