diff --git a/keychain.cpp b/keychain.cpp index 70ea7e0..8ae88d1 100644 --- a/keychain.cpp +++ b/keychain.cpp @@ -154,6 +154,8 @@ void DeletePasswordJob::doStart() { //In all current implementations, this deletes the entry so this is sufficient WritePasswordJob* job = new WritePasswordJob( service(), this ); connect( job, SIGNAL(finished(QKeychain::Job*)), d, SLOT(jobFinished(QKeychain::Job*)) ); + job->setInsecureFallback(true); + job->setSettings(settings()); job->setKey( d->key ); job->start(); }