fix accidental schema bump in undo that was forcing full sync

This commit is contained in:
Damien Elmes 2021-05-19 14:17:10 +10:00
parent a564399414
commit 1f77be01e7

View file

@ -21,7 +21,7 @@ impl Collection {
} }
UndoableCollectionChange::Modified(modified) => { UndoableCollectionChange::Modified(modified) => {
let current = self.storage.get_collection_timestamps()?.collection_change; let current = self.storage.get_collection_timestamps()?.collection_change;
self.set_schema_modified_time_undoable(modified, current) self.set_modified_time_undoable(modified, current)
} }
} }
} }