Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/owncloud/client.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/src/gui
diff options
context:
space:
mode:
authorHannah von Reth <hannah.vonreth@owncloud.com>2022-07-06 16:25:03 +0300
committerHannah von Reth <vonreth@kde.org>2022-07-06 17:36:24 +0300
commit1255520d1c7c7caf95d335751d7a78a30dc3ba1c (patch)
tree7b16c603b6b505394efd3e006bcacfda9fd5aeed /src/gui
parentfe2241659bb8edb280c3dc99f2573610c4fe1586 (diff)
Only emit AskingCredentials if we actually ask
Diffstat (limited to 'src/gui')
-rw-r--r--src/gui/accountstate.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui/accountstate.cpp b/src/gui/accountstate.cpp
index a4cef5fb2..efea8f518 100644
--- a/src/gui/accountstate.cpp
+++ b/src/gui/accountstate.cpp
@@ -450,8 +450,8 @@ void AccountState::slotInvalidCredentials()
}
qCInfo(lcAccountState) << "asking user";
account()->credentials()->askFromUser();
+ setState(AskingCredentials);
}
- setState(AskingCredentials);
}
void AccountState::slotCredentialsFetched(AbstractCredentials *)