Commit 20263057 authored by JC Brand's avatar JC Brand

Remove code for re-attaching a prebinded session.

I couldn't get it to work. Suspect that a new session needs to be
created/authenticated instead of attaching to the existing connection.
parent dc858cc3
......@@ -319,16 +319,8 @@
this.reconnect = function () {
converse.giveFeedback(__('Reconnecting'), 'error');
if (converse.prebind) {
this.connection.attach(
this.jid,
this.sid,
this.rid,
function (status, condition) {
converse.onConnect(status, condition, true);
}
);
} else {
// XXX: Couldn't get the prebind case to work here.
if (!converse.prebind) {
this.connection.connect(
this.connection.jid,
this.connection.pass,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment