diff options
author | jamiewalch@google.com <jamiewalch@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-07-08 01:17:44 +0000 |
---|---|---|
committer | jamiewalch@google.com <jamiewalch@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-07-08 01:17:44 +0000 |
commit | f3ae68af45b33dd2876d770b0db331fcb6918e18 (patch) | |
tree | 6bf90f0dd61315b8143c728530f497a286d8d083 /remoting/webapp | |
parent | b90724ecaf189e650123fdb27a8e477e7e15c917 (diff) | |
download | chromium_src-f3ae68af45b33dd2876d770b0db331fcb6918e18.zip chromium_src-f3ae68af45b33dd2876d770b0db331fcb6918e18.tar.gz chromium_src-f3ae68af45b33dd2876d770b0db331fcb6918e18.tar.bz2 |
Fixed version check in client_session.js
BUG=None
TEST=Connections work again.
Review URL: http://codereview.chromium.org/7331005
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@91794 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'remoting/webapp')
-rw-r--r-- | remoting/webapp/me2mom/client_session.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/remoting/webapp/me2mom/client_session.js b/remoting/webapp/me2mom/client_session.js index 87102682..986f5e0 100644 --- a/remoting/webapp/me2mom/client_session.js +++ b/remoting/webapp/me2mom/client_session.js @@ -229,7 +229,7 @@ remoting.ClientSession.prototype.registerConnection_ = that.clientJid = xhr.responseText; // TODO(ajwong): Remove old version support. - if (that.plugin.API_VERSION_ >= 2) { + if (that.plugin.apiVersion >= 2) { that.plugin.connect(that.hostJid, that.hostPublicKey, that.clientJid, that.accessCode); } else { |