forked from blallo/rss-bridge
[YoutubeBridge] Fix typo
This commit is contained in:
parent
962617086e
commit
4805b52d42
1 changed files with 2 additions and 2 deletions
|
@ -52,11 +52,11 @@ class YoutubeBridge extends BridgeAbstract {
|
||||||
$html = $this->ytGetSimpleHTMLDOM(self::URI . "watch?v=$vid");
|
$html = $this->ytGetSimpleHTMLDOM(self::URI . "watch?v=$vid");
|
||||||
|
|
||||||
// Skip unavailable videos
|
// Skip unavailable videos
|
||||||
if(!strpos($html->innertext, 'IS_UNAVAILABLE_PAGE')){
|
if(!strpos($html->innertext, 'IS_UNAVAILABLE_PAGE')) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
foreach($html->find('script') as $script){
|
foreach($html->find('script') as $script) {
|
||||||
$data = trim($script->innertext);
|
$data = trim($script->innertext);
|
||||||
|
|
||||||
if(strpos($data, '{') !== 0)
|
if(strpos($data, '{') !== 0)
|
||||||
|
|
Loading…
Reference in a new issue