Skip to content

Commit b475f09

Browse files
committed
don't do useless concatenation
1 parent c5e8bd3 commit b475f09

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -968,7 +968,7 @@ private JsonObject getVideoSecondaryInfoRenderer() throws ParsingException {
968968
@Nonnull
969969
private static String getVideoInfoUrl(final String id) {
970970
// TODO: Try parsing embedded_player_response first
971-
return "https://www.youtube.com/get_video_info?" + "video_id=" + id +
971+
return "https://www.youtube.com/get_video_info?video_id=" + id +
972972
"&eurl=https://youtube.googleapis.com/v/" + id +
973973
"&html5=1&c=TVHTML5&cver=6.20180913&gl=US&hl=en";
974974
}

0 commit comments

Comments
 (0)