Skip to content

Commit 39d67d6

Browse files
committed
Merge pull request #57 from benlangfeld/feature/authcid-compat
Allow passing authcid param introduced by strophe/strophejs#113
2 parents 07db748 + 72bd4d5 commit 39d67d6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

roster/strophe.roster.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -73,15 +73,15 @@ Strophe.addConnectionPlugin('roster',
7373
oldCallback.apply(this, arguments);
7474
}
7575
};
76-
conn.connect = function(jid, pass, callback, wait, hold, route)
76+
conn.connect = function(jid, pass, callback, wait, hold, route, authcid)
7777
{
7878
oldCallback = callback;
7979
if (typeof jid == "undefined")
8080
jid = null;
8181
if (typeof pass == "undefined")
8282
pass = null;
8383
callback = newCallback;
84-
_connect.apply(conn, [jid, pass, callback, wait, hold, route]);
84+
_connect.apply(conn, [jid, pass, callback, wait, hold, route, authcid]);
8585
};
8686
conn.attach = function(jid, sid, rid, callback, wait, hold, wind)
8787
{

0 commit comments

Comments
 (0)