Browse Source

fix session id receiving

CPP-GTK4
yggverse 2 months ago
parent
commit
2e35fd120a
  1. 5
      src/app/browser/main.cpp

5
src/app/browser/main.cpp

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

Loading…
Cancel
Save