summaryrefslogtreecommitdiff
path: root/chromium/components/browser_sync
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/components/browser_sync')
-rw-r--r--chromium/components/browser_sync/browser/profile_sync_service.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/chromium/components/browser_sync/browser/profile_sync_service.cc b/chromium/components/browser_sync/browser/profile_sync_service.cc
index e5192f9d97a..13f89836142 100644
--- a/chromium/components/browser_sync/browser/profile_sync_service.cc
+++ b/chromium/components/browser_sync/browser/profile_sync_service.cc
@@ -2116,7 +2116,7 @@ void ProfileSyncService::OnGaiaAccountsInCookieUpdated(
// Iterate through list of accounts, looking for current sync account.
for (const auto& account : accounts) {
- if (account.gaia_id == account_id) {
+ if (account.id == account_id) {
cookie_jar_mismatch = false;
break;
}