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 390379ed62
commit 79fb17c17f

View file

@ -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)
}
}
}