Do not process records if there are none to process
This commit is contained in:
parent
893a77a3ad
commit
bfe5a5edae
1 changed files with 4 additions and 0 deletions
|
@ -809,6 +809,10 @@ async function processManifest(
|
|||
});
|
||||
});
|
||||
|
||||
if (!remoteOnlyRecords.size) {
|
||||
return false;
|
||||
}
|
||||
|
||||
const conflictCount = await processRemoteRecords(remoteOnlyRecords);
|
||||
|
||||
// Post-merge, if our local records contain any storage IDs that were not
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue