Mobile: drop extra argument to QString

Clearly a cut and paste error. Only creates a harmless warning, still...

Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
Dirk Hohndel 2019-11-03 04:36:35 -08:00
parent db706193e1
commit 4111de70e8

View file

@ -555,7 +555,7 @@ bool QMLManager::verifyCredentials(QString email, QString password, QString pin)
{
setStartPageText(tr("Testing cloud credentials"));
if (pin.isEmpty())
appendTextToLog(QStringLiteral("verify credentials for email %1 (no PIN)").arg(email, pin));
appendTextToLog(QStringLiteral("verify credentials for email %1 (no PIN)").arg(email));
else
appendTextToLog(QStringLiteral("verify credentials for email %1 PIN %2").arg(email, pin));
CloudStorageAuthenticate *csa = new CloudStorageAuthenticate(this);