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.
This commit is contained in:
JC Brand 2014-02-11 23:48:38 +02:00
parent dc858cc38b
commit 2026305791

View File

@ -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,