Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 023cb19

Browse files
committedDec 26, 2024
authorization-identifier is a sasl2 feature, not bind
1 parent 0b7072e commit 023cb19

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed
 

‎packages/client-core/src/bind2/bind2.js

+1-4
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import xml from "@xmpp/xml";
22

33
const NS_BIND = "urn:xmpp:bind:0";
44

5-
export default function bind2({ sasl2, entity }, tag) {
5+
export default function bind2({ sasl2 }, tag) {
66
const features = new Map();
77

88
sasl2.use(
@@ -22,9 +22,6 @@ export default function bind2({ sasl2, entity }, tag) {
2222
);
2323
},
2424
(element) => {
25-
const aid = element.parent.getChildText("authorization-identifier");
26-
if (aid) entity._jid(aid);
27-
2825
for (const child of element.getChildElements()) {
2926
const feature = features.get(child.getNS());
3027
if (!feature?.[1]) continue;

‎packages/client/index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ function client(options = {}) {
6262
);
6363

6464
// SASL2 inline features
65-
const bind2 = _bind2({ sasl2, entity }, resource);
65+
const bind2 = _bind2({ sasl2 }, resource);
6666

6767
// Stream features - order matters and define priority
6868
const sasl = _sasl(

‎packages/sasl2/index.js

+3
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,9 @@ async function authenticate({
7171
mech.final(decode(additionalData));
7272
}
7373

74+
const aid = element.getChildText("authorization-identifier");
75+
if (aid) entity._jid(aid);
76+
7477
for (const child of element.getChildElements()) {
7578
const feature = features.get(child.getNS());
7679
if (!feature?.[1]) continue;

0 commit comments

Comments
 (0)
Please sign in to comment.