Fixing a login issue with password reset

This commit is contained in:
Christian 'ketura' McCarty
2025-04-06 17:50:02 -05:00
parent ac22e0644d
commit c1e02b8fa5

View File

@@ -165,7 +165,7 @@ var GempLotrCommunication = Class.extend({
}; };
}, },
getStatus:function (callback) { extractStatus:function (callback) {
var that = this; var that = this;
return function (xml, status, request) { return function (xml, status, request) {
callback(xml, request.status); callback(xml, request.status);
@@ -1314,7 +1314,7 @@ var GempLotrCommunication = Class.extend({
login:login, login:login,
password:password, password:password,
participantId:getUrlParam("participantId")}, participantId:getUrlParam("participantId")},
success:this.getStatus(callback), success:this.extractStatus(callback),
error:this.errorCheck(errorMap), error:this.errorCheck(errorMap),
dataType:"html" dataType:"html"
}); });