Skip to content

Commit

Permalink
Case sensitive for emails in app start #64
Browse files Browse the repository at this point in the history
  • Loading branch information
topilski committed Jul 24, 2018
1 parent 2e128fa commit 8fa4ebf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,7 @@ int main(int argc, char* argv[]) {
}

const QString login = password_dialog.GetLogin();
const std::string login_str = common::ConvertToString(login);
const std::string login_str = common::ConvertToString(login.toLower());
const QString password = password_dialog.GetPassword();
const std::string password_str = common::ConvertToString(password);
unsigned char md5_result[MD5_HASH_LENGHT];
Expand Down

0 comments on commit 8fa4ebf

Please sign in to comment.