diff --git a/Htmldocs/release_notes.html b/Htmldocs/release_notes.html index 35e007ba..df148ffb 100644 --- a/Htmldocs/release_notes.html +++ b/Htmldocs/release_notes.html @@ -11,6 +11,14 @@ This page in other languages:
http://www.apneaboard.com/wiki/index.php/OSCAR_Release_Notes

+ Changes and fixes in OSCAR v1.3.5-alpha.2 +
Portions of OSCAR are © 2019-2022 by + The OSCAR Team

+ +

Changes and fixes in OSCAR v1.3.5-alpha.0
Portions of OSCAR are © 2019-2022 by The OSCAR Team

@@ -20,7 +28,6 @@
  • DreamStation 2 Auto CPAP Advanced (520X110C, 520X150C)
  • -
  • [fix] File Export Sessions now exports statistics session data properly.
  • [new] Test Mantis integration.
  • diff --git a/oscar/SleepLib/loader_plugins/prs1_loader.cpp b/oscar/SleepLib/loader_plugins/prs1_loader.cpp index c51c53e1..e04d0149 100644 --- a/oscar/SleepLib/loader_plugins/prs1_loader.cpp +++ b/oscar/SleepLib/loader_plugins/prs1_loader.cpp @@ -1167,11 +1167,11 @@ void PRS1Loader::ScanFiles(const QStringList & paths, int sessionid_base) switch (ext) { case 0: if (task->compliance) { - if (chunksIdentical(chunk, task->summary)) { + if (chunksIdentical(chunk, task->compliance)) { // Never seen identical compliance chunks, so keep logging this for now. - qDebug() << chunkComparison(chunk, task->summary); + qDebug() << chunkComparison(chunk, task->compliance); } else { - qWarning() << chunkComparison(chunk, task->summary); + qWarning() << chunkComparison(chunk, task->compliance); } delete chunk; continue; // (skipping to avoid duplicates)