diff --git a/client/lib/patch-db.ts b/client/lib/patch-db.ts index 8cdc983..4051150 100644 --- a/client/lib/patch-db.ts +++ b/client/lib/patch-db.ts @@ -152,12 +152,6 @@ export class PatchDB { if (this.isRevision(update)) { const expected = cache.sequence + 1 if (update.id < expected) return - if (update.id > expected) { - return console.error( - // unreachable - `Received futuristic revision. Expected ${expected}, got ${update.id}`, - ) - } this.handleRevision(update, cache) } else { this.handleDump(update, cache)