[YoutubeBridge] Remove superfluous div selectors
This commit is contained in:
parent
4f6277b6b5
commit
962617086e
1 changed files with 2 additions and 2 deletions
|
@ -70,8 +70,8 @@ class YoutubeBridge extends BridgeAbstract {
|
|||
$author = $json->itemListElement[0]->item->name;
|
||||
}
|
||||
|
||||
if(!is_null($html->find('div#watch-description-text', 0)))
|
||||
$desc = $html->find('div#watch-description-text', 0)->innertext;
|
||||
if(!is_null($html->find('#watch-description-text', 0)))
|
||||
$desc = $html->find('#watch-description-text', 0)->innertext;
|
||||
|
||||
if(!is_null($html->find('meta[itemprop=datePublished]', 0)))
|
||||
$time = strtotime($html->find('meta[itemprop=datePublished]', 0)->getAttribute('content'));
|
||||
|
|
Loading…
Reference in a new issue