| Index: remoting/webapp/crd/js/me2me_activity.js
|
| diff --git a/remoting/webapp/crd/js/me2me_activity.js b/remoting/webapp/crd/js/me2me_activity.js
|
| index 3fd8251c421063591b184a8a2a983058c8d87b05..5a35735c1453a4a3a520bf2210fe035fd33842f9 100644
|
| --- a/remoting/webapp/crd/js/me2me_activity.js
|
| +++ b/remoting/webapp/crd/js/me2me_activity.js
|
| @@ -159,8 +159,7 @@ remoting.Me2MeActivity.prototype.createCredentialsProvider_ = function() {
|
|
|
| return new remoting.CredentialsProvider({
|
| fetchPin: requestPin,
|
| - pairingInfo: /** @type{remoting.PairingInfo} */ (
|
| - base.deepCopy(host.options.pairingInfo)),
|
| + pairingInfo: host.options.getPairingInfo(),
|
| fetchThirdPartyToken: fetchThirdPartyToken
|
| });
|
| };
|
| @@ -367,8 +366,8 @@ remoting.PinDialog.prototype.requestPairingIfNecessary = function(plugin) {
|
| * @param {string} sharedSecret
|
| */
|
| var onPairingComplete = function(clientId, sharedSecret) {
|
| - that.host_.options.pairingInfo.clientId = clientId;
|
| - that.host_.options.pairingInfo.sharedSecret = sharedSecret;
|
| + that.host_.options.setPairingInfo({'clientId': clientId,
|
| + 'sharedSecret': sharedSecret});
|
| that.host_.options.save();
|
| };
|
|
|
|
|