diff --git a/src/api.rs b/src/api.rs index cfc0ed7..446128b 100644 --- a/src/api.rs +++ b/src/api.rs @@ -32,5 +32,5 @@ pub async fn endpoint(req: Request, pool: DBPool) -> (String, StatusCo }; let restype: HeaderValue = "application/json".parse().unwrap(); - (res.to_string(), StatusCode::IM_A_TEAPOT, restype) + (res.to_string(), StatusCode::OK, restype) }