We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents d6e5b30 + 4006491 commit 54fe008Copy full SHA for 54fe008
LSMS.exe
548 Bytes
src/Library.cpp
@@ -7,6 +7,8 @@ Library::~Library(){}
7
bool Library::run_library() {
8
char input;
9
std::string bookname = "";
10
+ m_is_good = true;
11
+
12
if(m_user.get_mode() == user::notlogged){
13
if(m_user.login()){
14
log("================== WELCOME BACK ");
src/User.cpp
@@ -536,6 +536,9 @@ namespace user
536
537
_Openmode &User::logout()
538
{
539
+ mvec_books.clear();
540
+ mvec_owned.clear();
541
+ mvec_published.clear();
542
mf_set_mode(notlogged);
543
return m_mode;
544
}
0 commit comments