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 5b65f3ee5c1ddba125c49f1b0720dec300c6ed0d..974df30d13977f8d8de4dcad8d939e6e6685845e 100644 |
--- a/remoting/webapp/me2mom/host_table_entry.js |
+++ b/remoting/webapp/me2mom/host_table_entry.js |
@@ -83,10 +83,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'); |