php-youtube-api icon indicating copy to clipboard operation
php-youtube-api copied to clipboard

Cant parse video url without http:// prefix

Open ivaskad opened this issue 6 years ago • 0 comments

Youtube.php:429

change:

if (strpos($youtube_url, 'youtube.com')) {

to

if (strpos($youtube_url, 'youtube.com') !== false) {

same here: Youtube.php:437

ivaskad avatar Jul 19 '18 14:07 ivaskad