2
0
mirror of https://github.com/TeamNewPipe/NewPipeExtractor synced 2025-08-31 06:15:37 +00:00

[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

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