diff --git a/src/popular.rs b/src/popular.rs index e0f22c5..34dc34f 100644 --- a/src/popular.rs +++ b/src/popular.rs @@ -41,7 +41,7 @@ async fn render(sub_name: String, sort: Option, ends: (Option, O } .render() .unwrap(); - Ok(HttpResponse::Ok().content_type("text/html").body(s)) + Ok(HttpResponse::Ok().status(actix_web::http::StatusCode::NOT_FOUND).content_type("text/html").body(s)) } else { let items = items_result.unwrap(); diff --git a/src/post.rs b/src/post.rs index dc62699..56c28e6 100644 --- a/src/post.rs +++ b/src/post.rs @@ -28,7 +28,7 @@ async fn render(id: String, sort: String) -> Result { } .render() .unwrap(); - Ok(HttpResponse::Ok().content_type("text/html").body(s)) + Ok(HttpResponse::Ok().status(actix_web::http::StatusCode::NOT_FOUND).content_type("text/html").body(s)) } else { let s = PostTemplate { comments: comments.unwrap(), diff --git a/src/subreddit.rs b/src/subreddit.rs index e5bed96..bebda83 100644 --- a/src/subreddit.rs +++ b/src/subreddit.rs @@ -46,7 +46,7 @@ pub async fn render(sub_name: String, sort: Option, ends: (Option Result { } .render() .unwrap(); - Ok(HttpResponse::Ok().content_type("text/html").body(s)) + Ok(HttpResponse::Ok().status(actix_web::http::StatusCode::NOT_FOUND).content_type("text/html").body(s)) } else { let s = UserTemplate { user: user.unwrap(),