@@ -27,7 +27,7 @@ export class EAPPacketHandler implements IPacketHandler {
...
@@ -27,7 +27,7 @@ export class EAPPacketHandler implements IPacketHandler {
if(!this.eapConnectionStates.get(stateID)){
if(!this.eapConnectionStates.get(stateID)){
this.eapConnectionStates.set(stateID,{
this.eapConnectionStates.set(stateID,{
validMethods:this.eapMethods.filter(eap=>eap.getEAPType()!==handlingType)// on init all registered eap methods are valid, we kick them out in case we get a NAK response
validMethods:this.eapMethods.filter((eap)=>eap.getEAPType()!==handlingType),// on init all registered eap methods are valid, we kick them out in case we get a NAK response
});
});
}
}
...
@@ -78,7 +78,7 @@ export class EAPPacketHandler implements IPacketHandler {
...
@@ -78,7 +78,7 @@ export class EAPPacketHandler implements IPacketHandler {