| Index: sync/internal_api/sync_encryption_handler_impl.cc
|
| diff --git a/sync/internal_api/sync_encryption_handler_impl.cc b/sync/internal_api/sync_encryption_handler_impl.cc
|
| index e468e6cda347e4840566079c30f8dbf4d0ae089a..34bf0335c8f6b31dbb010f1faf0472643442f665 100644
|
| --- a/sync/internal_api/sync_encryption_handler_impl.cc
|
| +++ b/sync/internal_api/sync_encryption_handler_impl.cc
|
| @@ -692,8 +692,7 @@ bool SyncEncryptionHandlerImpl::SetKeystoreKeys(
|
|
|
| // Note: in order to Pack the keys, they must all be base64 encoded (else
|
| // JSON serialization fails).
|
| - if (!base::Base64Encode(raw_keystore_key, &keystore_key_))
|
| - return false;
|
| + base::Base64Encode(raw_keystore_key, &keystore_key_);
|
|
|
| // Go through and save the old keystore keys. We always persist all keystore
|
| // keys the server sends us.
|
|
|