diff options
author | Bryan Newbold <bnewbold@robocracy.org> | 2018-12-24 15:17:25 -0800 |
---|---|---|
committer | Bryan Newbold <bnewbold@robocracy.org> | 2018-12-24 15:17:25 -0800 |
commit | 24ab203a00354f768fc48e0786b21de4afcd9c4a (patch) | |
tree | 7c5305dafc110fb58e0ab323ba8b58c1f61914ba /rust/src/api_server.rs | |
parent | d7a4e4649e1da2c02ec8472173c79f7c708ce19b (diff) | |
download | fatcat-24ab203a00354f768fc48e0786b21de4afcd9c4a.tar.gz fatcat-24ab203a00354f768fc48e0786b21de4afcd9c4a.zip |
implement release_year (and rustfmt)
Diffstat (limited to 'rust/src/api_server.rs')
-rw-r--r-- | rust/src/api_server.rs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/rust/src/api_server.rs b/rust/src/api_server.rs index adc6ab11..d06de9c1 100644 --- a/rust/src/api_server.rs +++ b/rust/src/api_server.rs @@ -186,7 +186,7 @@ impl Server { .filter(file_ident::is_live.eq(true)) .filter(file_ident::redirect_id.is_null()) .first(conn)? - }, + } (None, Some(sha1), None) => { check_sha1(sha1)?; file_ident::table @@ -195,7 +195,7 @@ impl Server { .filter(file_ident::is_live.eq(true)) .filter(file_ident::redirect_id.is_null()) .first(conn)? - }, + } (None, None, Some(sha256)) => { check_sha256(sha256)?; file_ident::table @@ -204,7 +204,7 @@ impl Server { .filter(file_ident::is_live.eq(true)) .filter(file_ident::redirect_id.is_null()) .first(conn)? - }, + } _ => { return Err(ErrorKind::MissingOrMultipleExternalId("in lookup".to_string()).into()); } |