From 1f77be01e703727086d677b9d0a177a4f36f8368 Mon Sep 17 00:00:00 2001 From: Damien Elmes Date: Wed, 19 May 2021 14:17:10 +1000 Subject: [PATCH] fix accidental schema bump in undo that was forcing full sync --- rslib/src/collection/undo.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rslib/src/collection/undo.rs b/rslib/src/collection/undo.rs index 6ec005b2f..ef2480e94 100644 --- a/rslib/src/collection/undo.rs +++ b/rslib/src/collection/undo.rs @@ -21,7 +21,7 @@ impl Collection { } UndoableCollectionChange::Modified(modified) => { let current = self.storage.get_collection_timestamps()?.collection_change; - self.set_schema_modified_time_undoable(modified, current) + self.set_modified_time_undoable(modified, current) } } }