Fix invalid jsoup query

This commit is contained in:
Zsombor Gegesy 2019-11-28 22:04:29 +01:00 committed by Tobias Groza
parent 8e53fdad16
commit 0a3422a591
1 changed files with 1 additions and 1 deletions

View File

@ -697,7 +697,7 @@ public class YoutubeStreamExtractor extends StreamExtractor {
final String playerUrl;
// Check if the video is age restricted
if (!doc.select("meta[property=\"og:restrictions:age\"").isEmpty()) {
if (!doc.select("meta[property=\"og:restrictions:age\"]").isEmpty()) {
final EmbeddedInfo info = getEmbeddedInfo();
final String videoInfoUrl = getVideoInfoUrl(getId(), info.sts);
final String infoPageResponse = downloader.get(videoInfoUrl, getExtractorLocalization()).responseBody();