Skip to content

Commit e380bb4

Browse files
committed
[YouTube] Add missing prettyPrint query parameter to mixes continuations
1 parent 6c3c2e2 commit e380bb4

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

extractor/src/main/java/org/schabi/newpipe/extractor/services/youtube/extractors/YoutubeMixPlaylistExtractor.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -225,7 +225,8 @@ private Page getNextPageFrom(@Nonnull final JsonObject playlistJson,
225225
.done())
226226
.getBytes(StandardCharsets.UTF_8);
227227

228-
return new Page(YOUTUBEI_V1_URL + "next?key=" + getKey(), null, null, cookies, body);
228+
return new Page(YOUTUBEI_V1_URL + "next?key=" + getKey() + DISABLE_PRETTY_PRINT_PARAMETER,
229+
null, null, cookies, body);
229230
}
230231

231232
@Override

0 commit comments

Comments
 (0)