[YouTube] Add missing prettyPrint query parameter to mixes continuations

This commit is contained in:
AudricV 2024-04-04 21:27:04 +02:00
parent 6c3c2e25d7
commit e380bb4bc3
No known key found for this signature in database
GPG Key ID: DA92EC7905614198
1 changed files with 2 additions and 1 deletions

View File

@ -225,7 +225,8 @@ public class YoutubeMixPlaylistExtractor extends PlaylistExtractor {
.done())
.getBytes(StandardCharsets.UTF_8);
return new Page(YOUTUBEI_V1_URL + "next?key=" + getKey(), null, null, cookies, body);
return new Page(YOUTUBEI_V1_URL + "next?key=" + getKey() + DISABLE_PRETTY_PRINT_PARAMETER,
null, null, cookies, body);
}
@Override