This repository has been archived by the owner on Dec 11, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 971
Fix sync-after-import-bookmark hierarchy #9406
Merged
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diracdeltas
commented
Jun 12, 2017
app/sessionStore.js
Outdated
@@ -296,6 +296,10 @@ module.exports.cleanAppData = (data, isShutdown) => { | |||
if (data.dragData) { | |||
delete data.dragData | |||
} | |||
if (data.sync) { | |||
// clear sync site cache | |||
data.sync.objectsById = {} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
fix #9405
diracdeltas
commented
Jun 12, 2017
app/sync.js
Outdated
@@ -95,6 +95,11 @@ const appStoreChangeCallback = function (diffs) { | |||
const entry = state.getIn(statePath) | |||
const isSite = type === 'sites' | |||
|
|||
if (action === writeActions.CREATE && entry && entry.get('skipSync')) { | |||
// Don't re-create objects that were fetched by sync | |||
return |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
fix #9404
ayumi
reviewed
Jun 13, 2017
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@ayumi the test should be fixed now |
ayumi
approved these changes
Jun 13, 2017
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🍩
bsclifton
added a commit
that referenced
this pull request
Jun 14, 2017
Fix sync-after-import-bookmark hierarchy
bsclifton
added a commit
that referenced
this pull request
Jun 14, 2017
Fix sync-after-import-bookmark hierarchy
Confirmed works for laptop -> laptop and laptop -> android. Will update with laptop -> iOS in a moment |
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Fix #8892
Test plan:
Submitter Checklist:
git rebase -i
to squash commits (if needed).Test Plan:
Reviewer Checklist:
Tests