mirror of
https://github.com/RetroShare/RetroShare.git
synced 2024-10-01 02:35:48 -04:00
Fixed: mFixedPassword remained empty after logging
This commit is contained in:
parent
e1350a0b34
commit
9402b8e239
@ -80,7 +80,6 @@ bool RsControlModule::askForPassword(const std::string &title, const std::string
|
||||
{
|
||||
password = mPassword;
|
||||
mWantPassword = false;
|
||||
mPassword = "";
|
||||
return true;
|
||||
}
|
||||
|
||||
@ -96,7 +95,6 @@ bool RsControlModule::askForPassword(const std::string &title, const std::string
|
||||
if(mPassword != "")
|
||||
{
|
||||
password = mPassword;
|
||||
mPassword = "";
|
||||
mWantPassword = false;
|
||||
mStateTokenServer->replaceToken(mStateToken);
|
||||
return true;
|
||||
@ -138,6 +136,7 @@ void RsControlModule::run()
|
||||
bool login_ok = false;
|
||||
while(!login_ok)
|
||||
{
|
||||
mPassword = "";
|
||||
// skip account selection if autologin is available
|
||||
if(initResult != RS_INIT_HAVE_ACCOUNT)
|
||||
setRunState(WAITING_ACCOUNT_SELECT);
|
||||
@ -190,10 +189,10 @@ void RsControlModule::run()
|
||||
}
|
||||
|
||||
mLoadPeerId.clear();
|
||||
mPassword = "";
|
||||
}
|
||||
|
||||
mFixedPassword = mPassword;
|
||||
mPassword = "";
|
||||
|
||||
setRunState(WAITING_STARTUP);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user