diff --git a/bridges/WebfailBridge.php b/bridges/WebfailBridge.php index 46711223..68ceffaa 100644 --- a/bridges/WebfailBridge.php +++ b/bridges/WebfailBridge.php @@ -99,14 +99,14 @@ class WebfailBridge extends BridgeAbstract { $item = array(); $item['title'] = $this->fixTitle($article->find('a', 1)->innertext); - // Webfail shares videos or images + // Images, videos and gifs are provided in their own unique way if(!is_null($article->find('img.wf-image', 0))){ // Image type $item['uri'] = $this->getURI() . $article->find('a', 2)->href; $item['content'] = ''; + . '">'; } elseif(!is_null($article->find('div.wf-video', 0))){ // Video type $videoId = $this->getVideoId($article->find('div.wf-play', 0)->onclick); $item['uri'] = 'https://youtube.com/watch?v=' . $videoId; @@ -115,6 +115,13 @@ class WebfailBridge extends BridgeAbstract { . '">'; + } elseif(!is_null($article->find('video[id*=gif-]', 0))){ // Gif type + $item['uri'] = $this->getURI() . $article->find('a', 2)->href; + $item['content'] = ''; } $this->items[] = $item;