Fix pad password change

This commit is contained in:
yflory
2018-06-25 12:08:06 +02:00
parent 9b6895b47a
commit 0160ef30b7
3 changed files with 5 additions and 5 deletions

View File

@@ -187,7 +187,7 @@ define([
if (!yes) { return; }
sframeChan.query("Q_PAD_PASSWORD_CHANGE", {
href: data.href,
password: $(newPassword).val()
password: $(newPassword).find('input').val()
}, function (err, data) {
if (err || data.error) {
return void UI.alert(Messages.properties_passwordError);