Skip to content

Commit

Permalink
Bugfix. Need to wait for setUserJID
Browse files Browse the repository at this point in the history
  • Loading branch information
jcbrand committed Jun 5, 2019
1 parent a954ab9 commit a7184fa
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 7 deletions.
1 change: 1 addition & 0 deletions spec/smacks.js
Original file line number Diff line number Diff line change
Expand Up @@ -122,6 +122,7 @@
expect(Strophe.serialize(iq)).toBe(
`<iq id="${iq.getAttribute('id')}" type="get" xmlns="jabber:client"><query xmlns="jabber:iq:roster"/></iq>`);

await _converse.api.waitUntil('statusInitialized');
done();
}));
});
Expand Down
17 changes: 10 additions & 7 deletions src/headless/converse-core.js
Original file line number Diff line number Diff line change
Expand Up @@ -512,12 +512,12 @@ async function initUserSession (jid) {
}
}

function setUserJID (jid) {
async function setUserJID (jid) {
if (!Strophe.getResourceFromJid(jid)) {
jid = jid.toLowerCase() + _converse.generateResource();
}
jid = jid.toLowerCase();
initUserSession(jid);
await initUserSession(jid);
_converse.jid = jid;
_converse.bare_jid = Strophe.getBareJidFromJid(jid);
_converse.resource = Strophe.getResourceFromJid(jid);
Expand All @@ -541,7 +541,7 @@ async function onConnected (reconnecting) {
* by logging in or by attaching to an existing BOSH session.
*/
_converse.connection.flush(); // Solves problem of returned PubSub BOSH response not received by browser
setUserJID(_converse.connection.jid);
await setUserJID(_converse.connection.jid);
/**
* Synchronous event triggered after we've sent an IQ to bind the
* user's JID resource for this session.
Expand Down Expand Up @@ -1230,7 +1230,7 @@ _converse.initialize = async function (settings, callback) {
} else if (!isTestEnv() && window.PasswordCredential) {
const creds = await navigator.credentials.get({'password': true});
if (creds && creds.type == 'password' && u.isValidJID(creds.id)) {
setUserJID(creds.id);
await setUserJID(creds.id);
this.autoLogin({'jid': creds.id, 'password': creds.password});
}
}
Expand Down Expand Up @@ -1454,12 +1454,15 @@ _converse.api = {
}
let credentials;
if (jid && password) {
credentials = { jid: jid, password: password };
credentials = { jid, password };
} else if (u.isValidJID(_converse.jid) && _converse.password) {
credentials = { jid: _converse.jid, password: _converse.password };
credentials = {
jid: _converse.jid,
password: _converse.password
};
}
if (credentials && credentials.jid) {
setUserJID(credentials.jid);
await setUserJID(jid || _converse.jid);
}
_converse.attemptNonPreboundSession(credentials, reconnecting);
},
Expand Down

0 comments on commit a7184fa

Please sign in to comment.