CC-3923: Show Timefilter - Even If the time filter is scheduled for yesterday it displays the Show played today

-fixed
This commit is contained in:
denise 2012-06-08 12:03:23 -04:00
parent b586d69d09
commit 33f77c8c28
1 changed files with 2 additions and 2 deletions

View File

@ -96,7 +96,7 @@ var AIRTIME = (function(AIRTIME){
iRange = iEnd - iStart; iRange = iEnd - iStart;
if (iRange === 0 || iEnd < iStart) { if (iEnd < iStart) {
iEnd = iStart + DEFAULT_RANGE; iEnd = iStart + DEFAULT_RANGE;
iRange = DEFAULT_RANGE; iRange = DEFAULT_RANGE;
} }
@ -110,4 +110,4 @@ var AIRTIME = (function(AIRTIME){
return AIRTIME; return AIRTIME;
}(AIRTIME || {})); }(AIRTIME || {}));