From c1e02b8fa561770fa10623f90c96702a17cb1e54 Mon Sep 17 00:00:00 2001 From: Christian 'ketura' McCarty Date: Sun, 6 Apr 2025 17:50:02 -0500 Subject: [PATCH] Fixing a login issue with password reset --- .../gemp-lotr-async/src/main/web/js/gemp-022/communication.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gemp-lotr/gemp-lotr-async/src/main/web/js/gemp-022/communication.js b/gemp-lotr/gemp-lotr-async/src/main/web/js/gemp-022/communication.js index b77917e05..a5b9c257e 100644 --- a/gemp-lotr/gemp-lotr-async/src/main/web/js/gemp-022/communication.js +++ b/gemp-lotr/gemp-lotr-async/src/main/web/js/gemp-022/communication.js @@ -165,7 +165,7 @@ var GempLotrCommunication = Class.extend({ }; }, - getStatus:function (callback) { + extractStatus:function (callback) { var that = this; return function (xml, status, request) { callback(xml, request.status); @@ -1314,7 +1314,7 @@ var GempLotrCommunication = Class.extend({ login:login, password:password, participantId:getUrlParam("participantId")}, - success:this.getStatus(callback), + success:this.extractStatus(callback), error:this.errorCheck(errorMap), dataType:"html" });