aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Dirk Hohndel <dirk@hohndel.org>2019-03-09 17:51:14 -0800
committerGravatar Dirk Hohndel <dirk@hohndel.org>2019-04-04 15:01:37 -0700
commit30ea5aa9f63297db6b46985d9e1b0b5d6472a01a (patch)
tree979e3e8f9336a2477a4e63dfefa218ab607b0a94
parent268b453a81b6f97db816624041e4265e6fea79ab (diff)
downloadsubsurface-30ea5aa9f63297db6b46985d9e1b0b5d6472a01a.tar.gz
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>
-rw-r--r--desktop-widgets/preferences/preferences_network.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/desktop-widgets/preferences/preferences_network.cpp b/desktop-widgets/preferences/preferences_network.cpp
index c81588eea..e151b2afc 100644
--- a/desktop-widgets/preferences/preferences_network.cpp
+++ b/desktop-widgets/preferences/preferences_network.cpp
@@ -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();