Journal should always ignore 'do not import sessions' date

This commit is contained in:
kappa44 2021-05-21 10:42:38 +10:00
parent fc5cfc2a9b
commit dbaafed73d
2 changed files with 2 additions and 2 deletions

View File

@ -76,7 +76,7 @@ JournalEntry::JournalEntry(QDate date)
session->set_last(et);
// Let it live in memory...but not on disk unless data is changed...
jmach->AddSession(session);
jmach->AddSession(session, true);
// and where does day get set??? does day actually need to be set??
day = p_profile->GetDay(date, MT_JOURNAL);

View File

@ -2126,7 +2126,7 @@ Session * Daily::CreateJournalSession(QDate date)
sess->SetSessionID(st / 1000L);
sess->set_first(st);
sess->set_last(et);
m->AddSession(sess);
m->AddSession(sess, true);
return sess;
}
Session * Daily::GetJournalSession(QDate date) // Get the first journal session