From 0ae702922c76e5bf660361f4a78d05035a3375a9 Mon Sep 17 00:00:00 2001 From: damencho Date: Mon, 16 Nov 2015 16:50:15 -0600 Subject: [PATCH] Makes the room parameter lower case. --- modules/xmpp/xmpp.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/xmpp/xmpp.js b/modules/xmpp/xmpp.js index 9b28cb49f..3a980a5a4 100644 --- a/modules/xmpp/xmpp.js +++ b/modules/xmpp/xmpp.js @@ -322,7 +322,7 @@ var XMPP = { createConnection: function () { var bosh = config.bosh || '/http-bind'; // adds the room name used to the bosh connection - return new Strophe.Connection(bosh + '?ROOM=' + APP.UI.getRoomNode()); + return new Strophe.Connection(bosh + '?room=' + APP.UI.getRoomNode()); }, getStatusString: function (status) { return Strophe.getStatusString(status);