From d258e39b2ebdff9af2e080288f433fe56e6566a7 Mon Sep 17 00:00:00 2001 From: Martin Konecny Date: Tue, 17 Apr 2012 16:25:10 -0400 Subject: [PATCH] CC-3456: PlaylistBuilder -> does not identify NetworkDrive outage. -Remove unecessary "continue;" statements --- airtime_mvc/application/controllers/ApiController.php | 5 ----- 1 file changed, 5 deletions(-) diff --git a/airtime_mvc/application/controllers/ApiController.php b/airtime_mvc/application/controllers/ApiController.php index 0439d99b4..1ef9b3aa1 100644 --- a/airtime_mvc/application/controllers/ApiController.php +++ b/airtime_mvc/application/controllers/ApiController.php @@ -882,12 +882,10 @@ class ApiController extends Zend_Controller_Action // if mount path itself was watched if($dirPath == $ad){ Application_Model_MusicDir::addWatchedDir($dirPath, false); - continue; } // if dir contains any dir in removed_list( if watched dir resides on new mounted path ) else if(substr($dirPath, 0, strlen($ad)) === $ad && $dir->getExistsFlag() == false){ Application_Model_MusicDir::addWatchedDir($dirPath, false); - continue; } // is new mount point within the watched dir? // pyinotify doesn't notify anyhing in this case, so we add this mount point as @@ -895,7 +893,6 @@ class ApiController extends Zend_Controller_Action else if(substr($ad, 0, strlen($dirPath)) === $dirPath){ // bypass nested loop check Application_Model_MusicDir::addWatchedDir($ad, false, true); - continue; } } } @@ -906,7 +903,6 @@ class ApiController extends Zend_Controller_Action // if dir contains any dir in removed_list( if watched dir resides on new mounted path ) if(substr($dirPath, 0, strlen($rd)) === $rd && $dir->getExistsFlag() == true){ Application_Model_MusicDir::removeWatchedDir($dirPath, false); - continue; } // is new mount point within the watched dir? // pyinotify doesn't notify anyhing in this case, so we walk through all files within @@ -926,7 +922,6 @@ class ApiController extends Zend_Controller_Action if($watchDir){ Application_Model_MusicDir::removeWatchedDir($rd, false); } - continue; } } }