From 2e35fd120a94bdaea60e5a846dff37b129638e4d Mon Sep 17 00:00:00 2001 From: yggverse Date: Fri, 13 Sep 2024 00:49:06 +0300 Subject: [PATCH] fix session id receiving --- src/app/browser/main.cpp | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/app/browser/main.cpp b/src/app/browser/main.cpp index 9badd69e..1d730526 100644 --- a/src/app/browser/main.cpp +++ b/src/app/browser/main.cpp @@ -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 + ) ); } }