We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9236159 commit 5f13baaCopy full SHA for 5f13baa
1 file changed
autobahn/src/main/java/io/crossbar/autobahn/wamp/Session.java
@@ -1299,10 +1299,12 @@ private CompletableFuture<SessionDetails> reallyJoin(
1299
if (authenticator.getAuthMethod().equals(TicketAuth.authmethod)) {
1300
TicketAuth auth = (TicketAuth) authenticator;
1301
authID = auth.authid;
1302
+ authextra = auth.authextra;
1303
} else if (authenticator.getAuthMethod().equals(ChallengeResponseAuth.authmethod)) {
1304
ChallengeResponseAuth auth = (ChallengeResponseAuth) authenticator;
1305
1306
authrole = auth.authrole;
1307
1308
} else if (authenticator.getAuthMethod().equals(CryptosignAuth.authmethod)) {
1309
CryptosignAuth auth = (CryptosignAuth) authenticator;
1310
0 commit comments