Fix crash in CPAP rebuild byt ignoring Day entry with first = 0.

This commit is contained in:
Seeker4 2019-06-30 08:57:16 -07:00
parent 85efcace3e
commit 6a7661f516

View File

@ -182,6 +182,11 @@ void Statistics::updateRXChanges()
if (mach == nullptr)
continue;
if (day->first() == 0) { // Ignore invalid dates
qDebug() << "Statistics::updateRXChanges ignoring day with first=0";
continue;
}
bool fnd = false;