Skip to content
Snippets Groups Projects
Commit bbbed20f authored by Ming Rui Zhang's avatar Ming Rui Zhang
Browse files

jamiaccount: return directly if changePassword fails

Change-Id: I3d8a69fdbe13ab060923672eab3d110d1d24841f
parent 0819bce5
No related branches found
No related tags found
No related merge requests found
...@@ -787,7 +787,10 @@ bool ...@@ -787,7 +787,10 @@ bool
JamiAccount::changeArchivePassword(const std::string& password_old, const std::string& password_new) JamiAccount::changeArchivePassword(const std::string& password_old, const std::string& password_new)
{ {
try { try {
accountManager_->changePassword(password_old, password_new); if (!accountManager_->changePassword(password_old, password_new)) {
JAMI_ERR("[Account %s] Can't change archive password", getAccountID().c_str());
return false;
}
archiveHasPassword_ = not password_new.empty(); archiveHasPassword_ = not password_new.empty();
} catch (const std::exception& ex) { } catch (const std::exception& ex) {
JAMI_ERR("[Account %s] Can't change archive password: %s", getAccountID().c_str(), ex.what()); JAMI_ERR("[Account %s] Can't change archive password: %s", getAccountID().c_str(), ex.what());
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment