[document-updater] Avoid sending empty ops to project-history (#17920)

GitOrigin-RevId: a5156d99be373feb111bcc956d70c0f47047dd72
This commit is contained in:
Domagoj Kriskovic 2024-04-16 10:56:07 +02:00 committed by Copybot
parent c4437c69bc
commit 238e63e08c

View file

@ -71,8 +71,10 @@ const RangesManager = {
} }
rangesTracker.applyOp(op, { user_id: update.meta?.user_id }) rangesTracker.applyOp(op, { user_id: update.meta?.user_id })
} }
if (historyOps.length > 0) {
historyUpdates.push({ ...update, op: historyOps }) historyUpdates.push({ ...update, op: historyOps })
} }
}
if ( if (
rangesTracker.changes?.length > RangesManager.MAX_CHANGES || rangesTracker.changes?.length > RangesManager.MAX_CHANGES ||