implement current memory index save

This commit is contained in:
yggverse 2024-09-13 03:36:10 +03:00
parent 3706628225
commit f3483cf0c3

View file

@ -134,14 +134,14 @@ void History::save(
); );
// Add new records // Add new records
for (const auto & VALUE : memory) int offset = -1; for (const auto & MEMORY : memory)
{ {
DB::SESSION::add( DB::SESSION::add(
db, db,
APP_BROWSER_MAIN_TAB_PAGE_NAVIGATION__SESSION__ID, APP_BROWSER_MAIN_TAB_PAGE_NAVIGATION__SESSION__ID,
VALUE.time, MEMORY.time,
VALUE.request, MEMORY.request,
-1 == index // @TODO ++offset == index // is current
); );
} }
} }