| Index: remoting/webapp/me2mom/host_table_entry.js
|
| diff --git a/remoting/webapp/me2mom/host_table_entry.js b/remoting/webapp/me2mom/host_table_entry.js
|
| index 22bde6c9e07086a427bbd60fef9bdedac3159f65..69efdc4e8813ef971384696a1d401484f72b6396 100644
|
| --- a/remoting/webapp/me2mom/host_table_entry.js
|
| +++ b/remoting/webapp/me2mom/host_table_entry.js
|
| @@ -85,10 +85,7 @@ remoting.HostTableEntry.prototype.init = function(host, onRename, onDelete) {
|
| var hostStatus = document.createElement('td');
|
| if (host.status == 'ONLINE') {
|
| var hostUrl = chrome.extension.getURL('choice.html') +
|
| - '?mode=me2me' +
|
| - '&hostJid=' + encodeURIComponent(host.jabberId) +
|
| - '&hostPublicKey=' + encodeURIComponent(host.publicKey) +
|
| - '&hostName=' + encodeURIComponent(host.hostName);
|
| + '?mode=me2me&hostId=' + encodeURIComponent(host.hostId);
|
| var connectButton = document.createElement('button');
|
| connectButton.setAttribute('class', 'mode-select-button');
|
| connectButton.setAttribute('type', 'button');
|
|
|