diff --git a/plume-models/src/comments.rs b/plume-models/src/comments.rs index a76b1018..260118eb 100644 --- a/plume-models/src/comments.rs +++ b/plume-models/src/comments.rs @@ -75,7 +75,6 @@ impl Comment { let mentions = Mention::list_for_comment(conn, self.id).into_iter() .map(|m| m.get_mentioned(conn).map(|u| u.get_fqn(conn)).unwrap_or(String::new())) .collect::>(); - println!("{:?}", mentions); json["mentions"] = serde_json::to_value(mentions).unwrap(); json }