Skip to content

Commit 5f13baa

Browse files
authored
Update Session.java. Fix TicketAuth null authextra (#562)
* Update Session.java. Fix TicketAuth null authextra * ChallengeResponseAuth fix null authextra
1 parent 9236159 commit 5f13baa

File tree

1 file changed

+2
-0
lines changed
  • autobahn/src/main/java/io/crossbar/autobahn/wamp

1 file changed

+2
-0
lines changed

autobahn/src/main/java/io/crossbar/autobahn/wamp/Session.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1299,10 +1299,12 @@ private CompletableFuture<SessionDetails> reallyJoin(
12991299
if (authenticator.getAuthMethod().equals(TicketAuth.authmethod)) {
13001300
TicketAuth auth = (TicketAuth) authenticator;
13011301
authID = auth.authid;
1302+
authextra = auth.authextra;
13021303
} else if (authenticator.getAuthMethod().equals(ChallengeResponseAuth.authmethod)) {
13031304
ChallengeResponseAuth auth = (ChallengeResponseAuth) authenticator;
13041305
authID = auth.authid;
13051306
authrole = auth.authrole;
1307+
authextra = auth.authextra;
13061308
} else if (authenticator.getAuthMethod().equals(CryptosignAuth.authmethod)) {
13071309
CryptosignAuth auth = (CryptosignAuth) authenticator;
13081310
authID = auth.authid;

0 commit comments

Comments
 (0)