From 5e071878605a945497f2a75559fd7f13e3a75be3 Mon Sep 17 00:00:00 2001 From: sawinglogz <3787776-sawinglogz@users.noreply.gitlab.com> Date: Sat, 25 Jan 2020 17:35:58 -0500 Subject: [PATCH] Fix the Viatom loader's mysteriously missing sessions. It looks like SaveSummaryCache() would occasionally get called elsewhere under certain circumstances, which would cause sessions to occasionally save, but unpredictably. Now the summary cache gets saved consistently. --- oscar/SleepLib/loader_plugins/viatom_loader.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/oscar/SleepLib/loader_plugins/viatom_loader.cpp b/oscar/SleepLib/loader_plugins/viatom_loader.cpp index 95792da3..e5d7cbfa 100644 --- a/oscar/SleepLib/loader_plugins/viatom_loader.cpp +++ b/oscar/SleepLib/loader_plugins/viatom_loader.cpp @@ -144,6 +144,8 @@ void ViatomLoader::SaveSessionToDatabase(Session* sess) sess->SetChanged(true); mach->AddSession(sess); mach->Save(); + mach->SaveSummaryCache(); + p_profile->StoreMachines(); } void ViatomLoader::AddEvent(ChannelID channel, qint64 t, EventDataType value)