diff --git a/extractor/src/main/java/org/schabi/newpipe/extractor/services/youtube/extractors/YoutubeStreamExtractor.java b/extractor/src/main/java/org/schabi/newpipe/extractor/services/youtube/extractors/YoutubeStreamExtractor.java index 25eb3e89..5c225a32 100644 --- a/extractor/src/main/java/org/schabi/newpipe/extractor/services/youtube/extractors/YoutubeStreamExtractor.java +++ b/extractor/src/main/java/org/schabi/newpipe/extractor/services/youtube/extractors/YoutubeStreamExtractor.java @@ -842,8 +842,8 @@ public class YoutubeStreamExtractor extends StreamExtractor { if (playerJsUrl.startsWith("//")) { playerJsUrl = HTTPS + playerJsUrl; } else if (playerJsUrl.startsWith("/")) { - // sometimes https://youtube.com part has to be added manually - playerJsUrl = HTTPS + "//youtube.com" + playerJsUrl; + // sometimes https://www.youtube.com part has to be added manually + playerJsUrl = HTTPS + "//www.youtube.com" + playerJsUrl; } cachedDeobfuscationCode = loadDeobfuscationCode(playerJsUrl);