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.
This commit is contained in:
sawinglogz 2020-01-25 17:35:58 -05:00
parent c727e78d45
commit 5e07187860

View File

@ -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)