We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6db4bea commit 7f202dbCopy full SHA for 7f202db
1 file changed
extractor/src/main/java/org/schabi/newpipe/extractor/services/youtube/YoutubeParsingHelper.java
@@ -96,7 +96,8 @@ private static boolean isGoogleURL(String url) {
96
try {
97
final URL u = new URL(url);
98
final String host = u.getHost();
99
- return host.startsWith("google.") || host.startsWith("m.google.");
+ return host.startsWith("google.") || host.startsWith("m.google.")
100
+ || host.startsWith("www.google.");
101
} catch (MalformedURLException e) {
102
return false;
103
}
0 commit comments