mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +00:00
Desktop: ensure cloud storage email address is all lower case
We already do that on mobile and I was certain we used to do this for desktop as well, but apparently that got lost somewhere... This should solve the problems we are seeing for people with mixed case email addresses. Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
parent
590f3c60bf
commit
c922a56495
2 changed files with 2 additions and 1 deletions
|
@ -53,7 +53,7 @@ void PreferencesNetwork::syncSettings()
|
|||
proxy->set_proxy_user(ui->proxyUsername->text());
|
||||
proxy->set_proxy_pass(ui->proxyPassword->text());
|
||||
|
||||
QString email = ui->cloud_storage_email->text();
|
||||
QString email = ui->cloud_storage_email->text().toLower();
|
||||
QString password = ui->cloud_storage_password->text();
|
||||
QString newpassword = ui->cloud_storage_new_passwd->text();
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue