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) while (sqlite3_step(statement) == SQLITE_ROW)
{ {
mainTab->restore( mainTab->restore(
DB::SESSION::ID sqlite3_column_int64(
statement,
DB::SESSION::ID
)
); );
} }
} }