Continue fix for mixed apply remote operations ops and non-ops.

pull/61/head
Ulion 3 years ago
parent 3ebad4902d
commit 8b0bd1d04d

@ -125,6 +125,8 @@ export const AutomergeEditor = {
if (operations.length) {
const slateOps = toSlateOp(operations, current)
// do not change isRemote flag for no-op case.
const wasRemote = e.isRemote
e.isRemote = true
Editor.withoutNormalizing(e, () => {
@ -145,7 +147,7 @@ export const AutomergeEditor = {
// XXX: only schedule set isRemote false when we did scheduled onChange by apply.
Promise.resolve().then(_ => (e.isRemote = false))
} else {
e.isRemote = false
e.isRemote = wasRemote
}
}
} catch (e) {

Loading…
Cancel
Save