fix session id receiving

This commit is contained in:
yggverse 2024-09-13 00:49:06 +03:00
parent 33a134ca33
commit 2e35fd120a

View File

@ -70,7 +70,10 @@ int Main::restore(
while (sqlite3_step(statement) == SQLITE_ROW)
{
mainTab->restore(
DB::SESSION::ID
sqlite3_column_int64(
statement,
DB::SESSION::ID
)
);
}
}