Bug 837292 - Part 4: Followup to unbust part 2; r=rnewman

This commit is contained in:
Gregory Szorc 2013-03-19 13:03:07 -07:00
Родитель 96e86b0f1f
Коммит 305906aa5a
1 изменённых файлов: 6 добавлений и 0 удалений

Просмотреть файл

@ -707,6 +707,12 @@ AbstractHealthReporter.prototype = Object.freeze({
if (!(dateFormatted in outputDataDays)) {
outputDataDays[dateFormatted] = {};
}
// This needs to be separate because dayVersions is provider
// specific and gets blown away in a loop while outputDataDays
// is persistent.
if (!(dateFormatted in dayVersions)) {
dayVersions[dateFormatted] = {};
}