By: mlohbihler
Hi,
I think there may be an issue with the AUTH class. At lines 100 and 164 is this
code (same in both places):
if((hdr != null) && (hdr.getType() == GMS.GmsHeader.JOIN_REQ)){
I believe it should also include the JOIN_REQ_WITH_STATE_TRANSFER value
as well:
if((hdr != null) && (hdr.getType() == GMS.GmsHeader.JOIN_REQ || hdr.getType()
== GMS.GmsHeader.JOIN_REQ_WITH_STATE_TRANSFER)) {
Does this make sense?