diff --git a/bridges/FacebookBridge.php b/bridges/FacebookBridge.php index 400e9734..e9114e6b 100644 --- a/bridges/FacebookBridge.php +++ b/bridges/FacebookBridge.php @@ -577,6 +577,16 @@ EOD; $content = $post->find('.userContentWrapper', 0); + // Remove embedded videos (the preview image remains) + foreach($content->find('._5mly') as $video) { + $video->outertext = ''; + } + + // Remove "Views ..." + foreach($content->find('._2ezg') as $subject) { + $subject->outertext = ''; + } + // Remove origin information (i.e. "YOUTUBE.COM") from embedded media foreach($content->find('._59tj') as $subject) { $subject->outertext = '';