From ca7895447182c14c5ba96e2763fe69210e063482 Mon Sep 17 00:00:00 2001 From: Phil Olynyk Date: Tue, 24 Mar 2020 10:34:50 -0400 Subject: [PATCH] Don't use mask on/off times to set session start and end They will be updated according to the edf file times. --- oscar/SleepLib/loader_plugins/resmed_loader.cpp | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/oscar/SleepLib/loader_plugins/resmed_loader.cpp b/oscar/SleepLib/loader_plugins/resmed_loader.cpp index cc6441d9..9af644d0 100644 --- a/oscar/SleepLib/loader_plugins/resmed_loader.cpp +++ b/oscar/SleepLib/loader_plugins/resmed_loader.cpp @@ -2086,8 +2086,10 @@ void ResDayTask::run() if (ovr.filemap.size() == 0) continue; Session * sess = new Session(mach, ovr.start); - sess->set_first(quint64(ovr.start)*1000L); - sess->set_last(quint64(ovr.end)*1000L); +// Do not set the session times according to Mask on/off times +// The LoadXXX edf routines will update them with recording start and durations +// sess->set_first(quint64(ovr.start)*1000L); +// sess->set_last(quint64(ovr.end)*1000L); ovr.sess = sess; for (auto mit=ovr.filemap.begin(), mend=ovr.filemap.end(); mit != mend; ++mit) {