Fix old roster.js missing route parameter on connect
This commit is contained in:
parent
95cbac27b0
commit
fceccf3e96
@ -72,7 +72,7 @@ Strophe.addConnectionPlugin('roster',
|
|||||||
oldCallback.apply(this, arguments);
|
oldCallback.apply(this, arguments);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
conn.connect = function(jid, pass, callback, wait, hold)
|
conn.connect = function(jid, pass, callback, wait, hold, route)
|
||||||
{
|
{
|
||||||
oldCallback = callback;
|
oldCallback = callback;
|
||||||
if (typeof jid == "undefined")
|
if (typeof jid == "undefined")
|
||||||
@ -80,7 +80,7 @@ Strophe.addConnectionPlugin('roster',
|
|||||||
if (typeof pass == "undefined")
|
if (typeof pass == "undefined")
|
||||||
pass = null;
|
pass = null;
|
||||||
callback = newCallback;
|
callback = newCallback;
|
||||||
_connect.apply(conn, [jid, pass, callback, wait, hold]);
|
_connect.apply(conn, [jid, pass, callback, wait, hold, route]);
|
||||||
};
|
};
|
||||||
conn.attach = function(jid, sid, rid, callback, wait, hold, wind)
|
conn.attach = function(jid, sid, rid, callback, wait, hold, wind)
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user