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) => {
let current = self.storage.get_collection_timestamps()?.collection_change;
self.set_schema_modified_time_undoable(modified, current)
self.set_modified_time_undoable(modified, current)
}
}
}