Skip to content

Commit

Permalink
Merge pull request #7468 from nextcloud/bugfix/delete-proxypass-whene…
Browse files Browse the repository at this point in the history
…mpty
  • Loading branch information
claucambra authored Nov 8, 2024
2 parents c75a324 + fa33dd6 commit c0ffd38
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/gui/accountmanager.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -363,6 +363,8 @@ void AccountManager::saveAccountHelper(Account *acc, QSettings &settings, bool s
connect(job, &QKeychain::Job::finished, this, [](const QKeychain::Job *const incomingJob) {
if (incomingJob->error() == QKeychain::NoError) {
qCInfo(lcAccountManager) << "Deleted proxy password from keychain";
} else if (incomingJob->error() == QKeychain::EntryNotFound) {
qCDebug(lcAccountManager) << "Proxy password not found in keychain, can't delete";
} else {
qCWarning(lcAccountManager) << "Failed to delete proxy password to keychain" << incomingJob->errorString();
}
Expand Down

0 comments on commit c0ffd38

Please sign in to comment.