Skip to content
This repository has been archived by the owner on Dec 11, 2019. It is now read-only.

Redo exception to cover Chrome's case #11647

Merged
merged 1 commit into from Oct 24, 2017
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 2 additions & 2 deletions app/importer.js
Expand Up @@ -225,8 +225,8 @@ importer.on('add-autofill-form-data-entries', (e, detail) => {
const shouldSkipCookie = (cookie) => {
// Bypassing cookie mismatch error in
// https://github.com/brave/browser-laptop/issues/11401
if (cookie.domain === '.google.com' &&
['https://notifications.google.com', 'https://accounts.google.com'].includes(cookie.url)) {
if (['https://notifications.google.com', 'https://myaccount.google.com',
'https://accounts.google.com'].includes(cookie.url)) {
return true
}
return false
Expand Down