don't do useless concatenation
This commit is contained in:
parent
c5e8bd368d
commit
b475f09ba7
1 changed files with 1 additions and 1 deletions
|
@ -968,7 +968,7 @@ public class YoutubeStreamExtractor extends StreamExtractor {
|
||||||
@Nonnull
|
@Nonnull
|
||||||
private static String getVideoInfoUrl(final String id) {
|
private static String getVideoInfoUrl(final String id) {
|
||||||
// TODO: Try parsing embedded_player_response first
|
// TODO: Try parsing embedded_player_response first
|
||||||
return "https://www.youtube.com/get_video_info?" + "video_id=" + id +
|
return "https://www.youtube.com/get_video_info?video_id=" + id +
|
||||||
"&eurl=https://youtube.googleapis.com/v/" + id +
|
"&eurl=https://youtube.googleapis.com/v/" + id +
|
||||||
"&html5=1&c=TVHTML5&cver=6.20180913&gl=US&hl=en";
|
"&html5=1&c=TVHTML5&cver=6.20180913&gl=US&hl=en";
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue