mobile: do not care about email/passwd when NOCLOUD

In case the credential state is NOCLOUD, the saving of credentials
in the preferences was suppressed in case of invalid data in the
email/passwd fields.

There is no reason to check these fields for correct input, as they
are not used in case of NOCLOUD mode. A simple if statement is added.

Signed-off-by: Jan Mulder <jlmulder@xs4all.nl>
This commit is contained in:
Jan Mulder 2017-09-27 18:19:53 +02:00 committed by Dirk Hohndel
parent cf8e87545f
commit 6ea3fd3d92

View file

@ -320,6 +320,8 @@ void QMLManager::saveCloudCredentials()
QRegularExpression regExp("^[a-zA-Z0-9@.+_-]+$"); QRegularExpression regExp("^[a-zA-Z0-9@.+_-]+$");
QString cloudPwd = cloudPassword(); QString cloudPwd = cloudPassword();
QString cloudUser = cloudUserName(); QString cloudUser = cloudUserName();
if (credentialStatus() != CS_NOCLOUD) {
// in case of NO_CLOUD, the email address + passwd do not care, so do not check it.
if (cloudPwd.isEmpty() || !regExp.match(cloudPwd).hasMatch() || !regExp.match(cloudUser).hasMatch()) { if (cloudPwd.isEmpty() || !regExp.match(cloudPwd).hasMatch() || !regExp.match(cloudUser).hasMatch()) {
setStartPageText(RED_FONT + tr("Cloud storage email and password can only consist of letters, numbers, and '.', '-', '_', and '+'.") + END_FONT); setStartPageText(RED_FONT + tr("Cloud storage email and password can only consist of letters, numbers, and '.', '-', '_', and '+'.") + END_FONT);
return; return;
@ -330,6 +332,7 @@ void QMLManager::saveCloudCredentials()
setStartPageText(RED_FONT + tr("Invalid format for email address") + END_FONT); setStartPageText(RED_FONT + tr("Invalid format for email address") + END_FONT);
return; return;
} }
}
setOldStatus(credentialStatus()); setOldStatus(credentialStatus());
s.beginGroup("CloudStorage"); s.beginGroup("CloudStorage");
s.setValue("email", cloudUser); s.setValue("email", cloudUser);