Update summary cache so that purging oximetry persists between launches.

This commit is contained in:
sawinglogz 2020-03-26 19:59:54 -04:00
parent 47c97721fb
commit 828d449aa4

View File

@ -2587,16 +2587,19 @@ void MainWindow::on_actionPurgeCurrentDaysOximetry_triggered()
} }
QList<Session *> sessionlist=day->getSessions(MT_OXIMETER); QList<Session *> sessionlist=day->getSessions(MT_OXIMETER);
QSet<Machine *> machines;
for (auto & sess : sessionlist) { for (auto & sess : sessionlist) {
machines += sess->machine();
sess->Destroy(); sess->Destroy();
delete sess; delete sess;
} }
// TODO: Fix this. It deletes the underlying session data file in the machine,
// but not from the machine's summary cache. This results in future launches // We have to update the summary cache for the affected machine(s),
// of OSCAR thinking the day has oximetry data, but then it isn't really there. // otherwise OSCAR will still think this day has oximetry data at next launch.
// Currently this is only useful for reimporting a single day, which the purge for (auto & mach : machines) {
// permits, and which in turn creates a new data file for that day. mach->SaveSummaryCache();
}
if (daily) { if (daily) {