diff --git a/src/login/login.cpp b/src/login/login.cpp
index b35fa5e1b..ea12eccf2 100644
--- a/src/login/login.cpp
+++ b/src/login/login.cpp
@@ -121,7 +121,8 @@ void login_remove_online_user(uint32 account_id) {
delete_timer( p->waiting_disconnect, login_waiting_disconnect_timer );
}
- accounts->disable_webtoken( accounts, account_id );
+ if (login_config.use_web_auth_token)
+ accounts->disable_webtoken( accounts, account_id );
online_db.erase( account_id );
}
Was assisted via discord by Nitrous, this issue resolved the disabled message to appear on the logs, but it still did not really improve the issue that I can not login again after getting disconnected to the login screen.