diff options
Diffstat (limited to 'src/api/search_results.rs')
-rw-r--r-- | src/api/search_results.rs | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/src/api/search_results.rs b/src/api/search_results.rs index 585ba2c..8f01e56 100644 --- a/src/api/search_results.rs +++ b/src/api/search_results.rs @@ -1,4 +1,6 @@ -use crate::database::{Album, Artist, Song}; +use crate::database::album::Album; +use crate::database::artist::Artist; +use crate::database::song::Song; use crate::AppState; use actix_web::{get, web, HttpResponse}; use serde::Deserialize; @@ -42,9 +44,11 @@ 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), + _ => ( + Err(sqlx::Error::RowNotFound), + Err(sqlx::Error::RowNotFound), + Err(sqlx::Error::RowNotFound) + ), }; return HttpResponse::Ok().json(( |