Skip to content

Commit

Permalink
Change Credential save error message to more specific, fix #1021
Browse files Browse the repository at this point in the history
  • Loading branch information
deXol committed Apr 7, 2023
1 parent 0a7ef3c commit e1c737c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/CredentialsManagement.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -438,7 +438,7 @@ void CredentialsManagement::on_addCredentialButton_clicked()
if (success)
QMessageBox::information(this, "Moolticute", tr("%1: New Login %2 added.").arg(service, login));
else
QMessageBox::warning(this, tr("Failure"), tr("Couldn't Add New Credential to Device"));
QMessageBox::warning(this, tr("Failure"), tr("Couldn't Add This Credential: Please approve the request on the device."));

ui->addCredServiceInput->clear();
ui->addCredLoginInput->clear();
Expand Down

0 comments on commit e1c737c

Please sign in to comment.