aboutsummaryrefslogtreecommitdiffstats
path: root/rust/src
diff options
context:
space:
mode:
authorBryan Newbold <bnewbold@robocracy.org>2019-05-13 16:09:41 -0700
committerBryan Newbold <bnewbold@robocracy.org>2019-05-13 16:09:41 -0700
commitd68ec599c744b56b2e0f6e79f7973bc7b1618fb3 (patch)
treea3c5546e23c625c46ce6b52340709ba0cabab1dc /rust/src
parent6f778b5398d9caf9ab31c39bce792f75df9e62ec (diff)
downloadfatcat-d68ec599c744b56b2e0f6e79f7973bc7b1618fb3.tar.gz
fatcat-d68ec599c744b56b2e0f6e79f7973bc7b1618fb3.zip
rust: fix subtitle/original_title typo
Diffstat (limited to 'rust/src')
-rw-r--r--rust/src/entity_crud.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/rust/src/entity_crud.rs b/rust/src/entity_crud.rs
index 60503671..19122548 100644
--- a/rust/src/entity_crud.rs
+++ b/rust/src/entity_crud.rs
@@ -2103,7 +2103,7 @@ impl EntityCrud for ReleaseEntity {
Ok(ReleaseRevNewRow {
refs_blob_sha1: refs_sha1,
title: model.title.clone().unwrap(), // titles checked above
- subtitle: model.original_title.clone(),
+ subtitle: model.subtitle.clone(),
original_title: model.original_title.clone(),
release_type: model.release_type.clone(),
release_stage: model.release_stage.clone(),