summaryrefslogtreecommitdiffstats
path: root/desktop-widgets/preferences
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-03-13 16:27:12 +1300
commitc922a564953ffbe2e5eeaf01433759bafaf95209 (patch)
tree72013c0a787dcebae111b31fcdd2979ee0777701 /desktop-widgets/preferences
parent590f3c60bfb030ebad9334fcbf440bb2e3828f1b (diff)
downloadsubsurface-c922a564953ffbe2e5eeaf01433759bafaf95209.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>
Diffstat (limited to 'desktop-widgets/preferences')
-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();