Skip to content

Commit

Permalink
Bug fix: Edits to a copied synced clipping aren't saved to sync file
Browse files Browse the repository at this point in the history
(issue #383)
- Backported from 6.4
  • Loading branch information
aecreations committed May 29, 2022
1 parent da80b88 commit eafa5e7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions wx-src/pages/clippingsMgr.js
Expand Up @@ -1364,7 +1364,7 @@ let gCmd = {

if (gSyncedItemsIDs[aDestFldrID + "F"]) {
gClippings.pushSyncFolderUpdates().then(() => {
gSyncedItemsIDs[aClippingID + "C"] = 1;
gSyncedItemsIDs[aNewClippingID + "C"] = 1;
}).catch(handlePushSyncItemsError);
}
}).catch(aErr => {
Expand Down Expand Up @@ -1473,7 +1473,7 @@ let gCmd = {

if (gSyncedItemsIDs[aDestFldrID + "F"]) {
gClippings.pushSyncFolderUpdates().then(() => {
gSyncedItemsIDs[aFolderID + "F"] = 1;
gSyncedItemsIDs[newFldrID + "F"] = 1;
}).catch(handlePushSyncItemsError);
}

Expand Down

0 comments on commit eafa5e7

Please sign in to comment.