QML UI: always convert the cloud user name to lower case

Mixed case user names cause the connection to the cloud storage to fail.

Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
Dirk Hohndel 2016-03-23 23:12:03 -07:00
parent fcb93362ac
commit 854eb57ef5

View file

@ -904,7 +904,7 @@ QString QMLManager::cloudUserName() const
void QMLManager::setCloudUserName(const QString &cloudUserName)
{
m_cloudUserName = cloudUserName;
m_cloudUserName = cloudUserName.toLower();
emit cloudUserNameChanged();
}