diff --git a/connection.js b/connection.js index aa0ca0f7c..7764dfe92 100644 --- a/connection.js +++ b/connection.js @@ -22,7 +22,7 @@ function checkForAttachParametersAndConnect(id, password, connection) { // When connection optimization is not deployed or enabled the default // value will be window.XMPPAttachInfo.status = "error" // If the connection optimization is deployed and enabled and there is - // a failure the value will be window.XMPPAttachInfo.status = "error" + // a failure the value will be window.XMPPAttachInfo.status = "error" if(window.XMPPAttachInfo.status === "error") { connection.connect({id, password}); return; @@ -131,6 +131,18 @@ function requestAuth() { * @returns {Promise} */ export function openConnection({id, password, retry, roomName}) { + + let predefinedLogin = window.localStorage.getItem("xmpp_login"); + let predefinedPassword = window.localStorage.getItem("xmpp_password"); + + if (!id && predefinedLogin && predefinedLogin.length > 0) { + id = predefinedLogin; + } + + if (!password && predefinedPassword && predefinedPassword.length > 0) { + password = predefinedPassword; + } + return connect(id, password, roomName).catch(function (err) { if (!retry) { throw err;