diff options
author | niliara-edu <nil.jimeno@estudiant.fjaverianas.com> | 2025-01-20 01:34:42 +0100 |
---|---|---|
committer | niliara-edu <nil.jimeno@estudiant.fjaverianas.com> | 2025-01-20 01:34:42 +0100 |
commit | 371a647536c735118a66522fc46f86a0ec09e2d7 (patch) | |
tree | 53874e056e34a9bbd8516fafc5fdafcdf936c972 /src/routes | |
parent | cb3a9e58dbfa65da655c68e21d5bf270c4ccb7ef (diff) |
just formatting
Diffstat (limited to 'src/routes')
-rw-r--r-- | src/routes/search_results.rs | 18 |
1 files changed, 7 insertions, 11 deletions
diff --git a/src/routes/search_results.rs b/src/routes/search_results.rs index 03bd079..5c9efb8 100644 --- a/src/routes/search_results.rs +++ b/src/routes/search_results.rs @@ -31,20 +31,16 @@ pub async fn search_results( .search_results_by_name(&get_args.name.clone().unwrap()) .await } - _ => app_state - .database - .search_results() - .await - // Err(sqlx::Error::RowNotFound), - // Err(sqlx::Error::RowNotFound), - // Err(sqlx::Error::RowNotFound), + _ => app_state.database.search_results().await, // Err(sqlx::Error::RowNotFound), + // Err(sqlx::Error::RowNotFound), + // Err(sqlx::Error::RowNotFound), }; return HttpResponse::Ok().json(( - search_attempt.0.unwrap_or_else(|_| return Vec::new()), - search_attempt.1.unwrap_or_else(|_| return Vec::new()), - search_attempt.2.unwrap_or_else(|_| return Vec::new()) - )) + search_attempt.0.unwrap_or_else(|_| return Vec::new()), + search_attempt.1.unwrap_or_else(|_| return Vec::new()), + search_attempt.2.unwrap_or_else(|_| return Vec::new()), + )); } fn check_if_exists(value: &Option<String>) -> bool { |