In teh viewList function of videos plugin (video.php), the below code is found. Here the video plugin redirects the user to the photos page, which is wrong.
if ( !in_array($listType, $validLists) )
{
$this->redirect(OW::getRouter()->urlForRoute('view_photo_list', array('listType' => 'latest')));
}
It should be
$this->redirect(OW::getRouter()->urlForRoute('view_list', array('listType' => 'latest')));