1
0
Fork 0
forked from blallo/rss-bridge

[YoutubeBridge] Fix error on certain keywords

References #569
This commit is contained in:
logmanoriginal 2017-08-17 19:26:01 +02:00
parent 1b1ab6a66e
commit 0e2b80d5d7

View file

@ -53,7 +53,11 @@ class YoutubeBridge extends BridgeAbstract {
$author = $html->innertext;
$author = substr($author, strpos($author, '"author=') + 8);
$author = substr($author, 0, strpos($author, '\u0026'));
if(!is_null($html->find('div#watch-description-text', 0)))
$desc = $html->find('div#watch-description-text', 0)->innertext;
if(!is_null($html->find('meta[itemprop=datePublished]', 0)))
$time = strtotime($html->find('meta[itemprop=datePublished]', 0)->getAttribute('content'));
}