From 1d11c57b57ff5def4549b75b81a3bf19492476a2 Mon Sep 17 00:00:00 2001 From: LoudSnorer Date: Wed, 11 Jan 2023 20:22:12 -0500 Subject: [PATCH] fix proplen 59. AHI problem after a waveform preference change. --- oscar/SleepLib/schema.cpp | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/oscar/SleepLib/schema.cpp b/oscar/SleepLib/schema.cpp index dfec0b72..ae7cf469 100644 --- a/oscar/SleepLib/schema.cpp +++ b/oscar/SleepLib/schema.cpp @@ -396,6 +396,12 @@ void done() schema::channel.channels.clear(); schema::channel.groups.clear(); + // ahiChannels did not get cleared since day1 OSCAR when a reset was required. + // when reset occured then the Overview AHI graph would should an addtional set of channels. + // this fix just clears the variable that stores ahi data. + // probelm #59 https://gitlab.com/pholy/OSCAR-code/-/issues/59 + ahiChannels.clear(); + schema_initialized = false; }