Fix maskon/off vs session count comparison for deciding when to re-import a day

This commit is contained in:
Guy Scharf 2020-08-12 17:26:14 -07:00
parent 7c350068e0
commit 8f3971cb09

View File

@ -719,13 +719,20 @@ void ResmedLoader::checkSummaryDay( ResMedDay & resday, QDate date, Machine * ma
} }
} else { } else {
qDebug() << "Have summary and details for this date!"; qDebug() << "Have summary and details for this date!";
if (day->size() == (resday.str.maskevents/2) ) { QList<Session *> sessions = day->getSessions(MT_CPAP, true);
qDebug() << "No new sessions -- skipping"; if (sessions.length() == (resday.str.maskevents/2) ) {
qDebug() << "No new sessions -- skipping. Sessions now in day:";
qDebug() << " i sessionID s_first from - to";
for (int i=0; i < sessions.length(); i++) {
qDebug().noquote() << i << sessions[i]->session()
<< sessions[i]->first()
<< QDateTime::fromMSecsSinceEpoch(sessions[i]->first()).toString(" hh:mm:ss")
<< "-" << QDateTime::fromMSecsSinceEpoch(sessions[i]->last()).toString("hh:mm:ss");
}
return; return;
} }
qDebug() << "Maskevent count" << resday.str.maskevents << "is not twice the existing session count" << day->size(); qDebug() << "Maskevent count" << resday.str.maskevents << "is not twice the existing session count" << day->size();
qDebug() << "Clean the day and re-import it"; qDebug() << "Clean the day and re-import it";
QList<Session *> sessions = day->getSessions(MT_CPAP);
for (auto & sess : sessions) { for (auto & sess : sessions) {
day->removeSession(sess); day->removeSession(sess);
delete sess; delete sess;