diff --git a/Htmldocs/release_notes.html b/Htmldocs/release_notes.html index ee36a7f6..ebf486f9 100644 --- a/Htmldocs/release_notes.html +++ b/Htmldocs/release_notes.html @@ -19,6 +19,7 @@
  • [fix] Update copyright notices in html files.
  • [fix] Correct value display on exact data points, and near session boundaries with drift.
  • [fix] Link to translations in Credits and Release Notes html is now translated to selected language.
  • +
  • [fix] Continue to import DreamStation 1 data even if there is (unsupported) DreamStation 2 data on the SD card.
  • Changes and fixes in OSCAR v1.3.0 diff --git a/oscar/SleepLib/loader_plugins/prs1_loader.cpp b/oscar/SleepLib/loader_plugins/prs1_loader.cpp index 13d12f0a..f4d37c74 100644 --- a/oscar/SleepLib/loader_plugins/prs1_loader.cpp +++ b/oscar/SleepLib/loader_plugins/prs1_loader.cpp @@ -737,7 +737,10 @@ int PRS1Loader::Open(const QString & selectedPath) qWarning() << "PRS1Loader::Open() called without a valid m_ctx object present"; return 0; } - c += OpenMachine(machinePath); + int imported = OpenMachine(machinePath); + if (imported > 0) { // don't let errors < 0 suppress subsequent successes + c += imported; + } m_ctx->FlushUnexpectedMessages(); } return c;