Browse Source

Makes the room parameter lower case.

j8
damencho 9 years ago
parent
commit
0ae702922c
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      modules/xmpp/xmpp.js

+ 1
- 1
modules/xmpp/xmpp.js View File

322
     createConnection: function () {
322
     createConnection: function () {
323
         var bosh = config.bosh || '/http-bind';
323
         var bosh = config.bosh || '/http-bind';
324
         // adds the room name used to the bosh connection
324
         // adds the room name used to the bosh connection
325
-        return new Strophe.Connection(bosh + '?ROOM=' + APP.UI.getRoomNode());
325
+        return new Strophe.Connection(bosh + '?room=' + APP.UI.getRoomNode());
326
     },
326
     },
327
     getStatusString: function (status) {
327
     getStatusString: function (status) {
328
         return Strophe.getStatusString(status);
328
         return Strophe.getStatusString(status);

Loading…
Cancel
Save