Browse Source

Use new Name field to send room name, rather than deprectated Id field.

pull/192/head
Simon Eisenmann 10 years ago
parent
commit
9df314a37f
  1. 3
      static/js/mediastream/api.js

3
static/js/mediastream/api.js

@ -236,7 +236,8 @@ define(['jquery', 'underscore', 'ua-parser'], function($, _, uaparser) { @@ -236,7 +236,8 @@ define(['jquery', 'underscore', 'ua-parser'], function($, _, uaparser) {
var data = {
Version: this.version,
Ua: this.userAgent,
Id: name
Name: name,
Type: "" // Selects the default room type.
};
if (pin) {

Loading…
Cancel
Save