don't do useless concatenation

This commit is contained in:
bopol 2021-06-23 20:33:32 +02:00
parent c5e8bd368d
commit b475f09ba7
1 changed files with 1 additions and 1 deletions

View File

@ -968,7 +968,7 @@ public class YoutubeStreamExtractor extends StreamExtractor {
@Nonnull
private static String getVideoInfoUrl(final String id) {
// 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 +
"&html5=1&c=TVHTML5&cver=6.20180913&gl=US&hl=en";
}