Fix login error

When you import a private key, nickname was not converted to lowercase, which is why an error occurred.
This commit is contained in:
Yura Imashev 2014-03-16 13:19:12 -07:00
parent e8dff5e23b
commit 4aac7a4793

View File

@ -171,7 +171,7 @@ function sendNewUserTransaction(username, cbFunc) {
function importSecretKeypress() {
var secretKey = $(".secret-key-import").val();
var username = $(".username-import").val();
var username = $(".username-import").val().toLowerCase();
var $importButton = $(".import-secret-key");
if( secretKey.length == 52 && username.length ) {