diff options
author | Bryan Newbold <bnewbold@robocracy.org> | 2019-01-11 16:18:20 -0800 |
---|---|---|
committer | Bryan Newbold <bnewbold@robocracy.org> | 2019-01-11 16:18:20 -0800 |
commit | 99373d8662b63cc50d30a0a9b277a558f8c3ccc9 (patch) | |
tree | a9f7c38bc3d9a0f04013a84d2ce325077415dd59 /rust/src/entity_crud.rs | |
parent | 39ea4f451543822bd6e525cfac252363b78cc6ec (diff) | |
download | fatcat-99373d8662b63cc50d30a0a9b277a558f8c3ccc9.tar.gz fatcat-99373d8662b63cc50d30a0a9b277a558f8c3ccc9.zip |
implement since/before ordering for range requests
Diffstat (limited to 'rust/src/entity_crud.rs')
-rw-r--r-- | rust/src/entity_crud.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rust/src/entity_crud.rs b/rust/src/entity_crud.rs index 0b70d417..ce1c1ed7 100644 --- a/rust/src/entity_crud.rs +++ b/rust/src/entity_crud.rs @@ -550,7 +550,7 @@ macro_rules! generic_db_get_history { .map(|(eg_row, cl_row, e_row)| { Ok(EntityHistoryEntry { edit: e_row.into_model()?, - editgroup: eg_row.into_model_partial(), + editgroup: eg_row.into_model_partial(None), changelog_entry: cl_row.into_model(), }) }) |