CC-5179: Now Playing: Schedule will be incorrect after insert action

Was not accounting for crossfade value when adjusting schedule times after insert
This commit is contained in:
denise 2013-05-29 11:42:02 -04:00
parent be59810810
commit 0d436d323c
1 changed files with 6 additions and 1 deletions

View File

@ -644,7 +644,12 @@ class Application_Model_Scheduler
$pstart = microtime(true);
if ($applyCrossfades) {
$initalStartDT = clone $this->findTimeDifference(
$nextStartDT, $this->crossfadeDuration);
} else {
$initalStartDT = clone $nextStartDT;
}
$pend = microtime(true);
Logging::debug("finding all following items.");